Skip to content

Commit eb95788

Browse files
committed
Reduce variations
1 parent c446873 commit eb95788

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/workflows/test_accuracy.yml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ concurrency:
99
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
1010
cancel-in-progress: true
1111
jobs:
12-
test_accuracy:
12+
test_accuracy_items:
1313
strategy:
1414
fail-fast: false
1515
matrix:
1616
os:
1717
- "ubuntu-24.04"
18-
- "windows-2022"
18+
# - "windows-2022"
1919
python-version:
2020
- "3.10"
21-
- "3.11"
22-
- "3.12"
23-
- "3.13"
21+
# - "3.11"
22+
# - "3.12"
23+
# - "3.13"
2424
runs-on: ${{ matrix.os }}
2525
steps:
2626
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -40,3 +40,14 @@ jobs:
4040
- name: Run Python Test
4141
run: |
4242
uv run pytest --data=./data tests/accuracy/test_accuracy.py
43+
tests:
44+
runs-on: ubuntu-latest
45+
needs: test_accuracy_items
46+
if: always()
47+
steps:
48+
- name: All tests ok
49+
if: ${{ !(contains(needs.*.result, 'failure')) }}
50+
run: exit 0
51+
- name: Some tests failed
52+
if: ${{ contains(needs.*.result, 'failure') }}
53+
run: exit 1

0 commit comments

Comments
 (0)