Skip to content

Commit 1b91182

Browse files
author
steven
committed
1. github actions workflow updated.
1 parent 0bfa6da commit 1b91182

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ on:
99

1010
jobs:
1111
test-installation:
12-
name: Test on ${{ matrix.os }}
12+
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, windows-latest, macos-latest]
1818
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
19+
20+
id: ${{ matrix.os }}-py${{ matrix.python-version }}
1921

2022
steps:
2123
- uses: actions/checkout@v3
@@ -80,3 +82,9 @@ jobs:
8082
- name: Test CLI
8183
run: |
8284
ailice --help || echo "Version check completed"
85+
86+
- name: Set status output
87+
if: always()
88+
run: |
89+
echo "::set-output name=status::${{ job.status }}"
90+
id: status

0 commit comments

Comments
 (0)