Skip to content

Commit 43c23ef

Browse files
committed
limit instance tests to python 3.8 workflow
1 parent 5636edd commit 43c23ef

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

Diff for: .github/workflows/test.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -40,23 +40,21 @@ jobs:
4040
needs: [unit]
4141
strategy:
4242
fail-fast: false
43-
matrix:
44-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4543
steps:
4644
- uses: actions/checkout@v4
4745
with:
4846
fetch-depth: 0
4947
- name: Set up Python ${{ matrix.python-version }}
5048
uses: actions/setup-python@v5
5149
with:
52-
python-version: ${{ matrix.python-version }}
50+
python-version: '3.8'
5351
- name: Install dependencies
5452
run: make install
5553
- name: Test instance changes on this branch
5654
run: make test-changes T_FLAGS+='-n 10 --json-report --json-report-file=report/report.json'
5755
# Only run summary once
5856
- name: all summary
59-
if: (success() || failure()) && matrix.python-version == '3.8'
57+
if: (success() || failure())
6058
run: |
6159
make github-summary >> $GITHUB_STEP_SUMMARY
6260
instance-tests:
@@ -65,22 +63,20 @@ jobs:
6563
needs: [unit]
6664
strategy:
6765
fail-fast: false
68-
matrix:
69-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
7066
steps:
7167
- uses: actions/checkout@v4
7268
- name: Set up Python ${{ matrix.python-version }}
7369
uses: actions/setup-python@v5
7470
with:
75-
python-version: ${{ matrix.python-version }}
71+
python-version: '3.8'
7672
- name: Install dependencies
7773
run: make install
7874
- name: Test all instances
7975
run: |
8076
make report! T_FLAGS+='-n 10' || true
8177
# Only run summary once
8278
- name: summary
83-
if: (success() || failure()) && matrix.python-version == '3.8'
79+
if: (success() || failure())
8480
run: |
8581
make github-summary >> $GITHUB_STEP_SUMMARY
8682

0 commit comments

Comments
 (0)