Skip to content

Commit 23c46bb

Browse files
committed
fix: update GitHub Actions to run tests only on Python 3.11
1 parent d9e060c commit 23c46bb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/codecov_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ['3.9', '3.10', '3.11']
12+
python-version: ['3.11']
1313

1414
steps:
1515
- uses: actions/checkout@v6
@@ -34,7 +34,7 @@ jobs:
3434

3535
# copy coverage.xml from tox to path: '~/coverage.xml'
3636
- name: Upload coverage.xml
37-
if: ${{ matrix.python-version == '3.9' }}
37+
if: ${{ matrix.python-version == '3.11' }}
3838
uses: actions/upload-artifact@v7
3939
with:
4040
name: upload tox-gh-actions-coverage
@@ -43,7 +43,7 @@ jobs:
4343

4444
# upload coverage.xml to codecov
4545
- name: Upload coverage.xml to codecov
46-
if: ${{ matrix.python-version == '3.9' }}
46+
if: ${{ matrix.python-version == '3.11' }}
4747
uses: codecov/codecov-action@v6
4848
with:
4949
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)