Skip to content

Commit

Permalink
Update manual-matrix.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubakimoto committed Jun 25, 2024
1 parent 1031df8 commit 71c0eca
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/manual-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
# os: [ ubuntu-latest, ubuntu-24.04, ubuntu-22.04, ubuntu-20.04, windows-latest, windows-2022, windows-2019, macos-latest, macos-latest-large, macos-latest-xlarge, macos-11, macos-12, macos-12-large, macos-13, macos-13-large, macos-13-xlarge, macos-14, macos-14-large, macos-14-xlarge ]
runs-on: ${{ matrix.os }}
steps:
- name: Send greeting
run: echo "Hello ${{ github.event.inputs.name }} on ${{ matrix.os }}"
continue-on-error: true
- name: Display OS info
run: |
import platform;
print(f'Hello ${{ github.event.inputs.name }} on ${{ matrix.os }}')
print(f'OS: {platform.system()}')
print(f'Release: {platform.release()}')
print(f'Version: {platform.version()}')
print(f'Machine: {platform.machine()}')
print(f'Processor: {platform.processor()}')
shell: python

0 comments on commit 71c0eca

Please sign in to comment.