Skip to content

Commit ec84960

Browse files
committed
Fix GitHub Actions runner and Python matrix
1 parent ac4997f commit ec84960

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-22.04
2828
strategy:
2929
matrix:
30-
python_version: [3.9, 3.11, 3.12]
30+
python_version: [3.11, 3.12]
3131

3232
# Steps represent a sequence of tasks that will be executed as part of the job
3333
steps:
@@ -62,7 +62,7 @@ jobs:
6262
- name: Coveralls
6363
env:
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
65-
if: ${{ matrix.python_version == '3.9' }}
65+
if: ${{ matrix.python_version == '3.11' }}
6666
run: |
6767
pip install coveralls
6868
poetry run coveralls --service=github

.github/workflows/static-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
name: Static checks of source code (PEP8 and our custom checks)
2121
# The type of runner that the job will run on
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-22.04
2323

2424
# Steps represent a sequence of tasks that will be executed as part of the job
2525
steps:

0 commit comments

Comments
 (0)