Skip to content

Commit 13bc2ca

Browse files
committed
Move to latest Github Actions images.
1 parent eb0e01a commit 13bc2ca

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/ci-tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,26 @@ jobs:
2222
- "3.12"
2323
- "pypy-3.8"
2424
os:
25-
- "ubuntu-20.04"
26-
- "windows-2022"
27-
- "macos-11"
25+
- "ubuntu-latest"
26+
- "windows-latest"
27+
- "macos-latest"
2828
architecture:
2929
- x64
3030
- x86
3131

3232
include:
33-
# Only run coverage on ubuntu-20.04, except on pypy3
34-
- os: "ubuntu-20.04"
33+
# Only run coverage on ubuntu-latest, except on pypy3
34+
- os: "ubuntu-latest"
3535
pytest-args: "--cov"
36-
- os: "ubuntu-20.04"
36+
- os: "ubuntu-latest"
3737
py: "pypy-3.8"
3838
pytest-args: ""
3939

4040
exclude:
41-
# Linux and macOS don't have x86 python
42-
- os: "ubuntu-20.04"
41+
# Linux doesn't have x86 python
42+
- os: "ubuntu-latest"
4343
architecture: x86
44-
- os: "macos-11"
44+
- os: "macos-latest"
4545
architecture: x86
4646

4747
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
@@ -57,7 +57,7 @@ jobs:
5757
- name: Running tox
5858
run: tox -e py -- ${{ matrix.pytest-args }}
5959
coverage:
60-
runs-on: ubuntu-20.04
60+
runs-on: ubuntu-latest
6161
name: Validate coverage
6262
steps:
6363
- uses: actions/checkout@v4
@@ -69,7 +69,7 @@ jobs:
6969
- run: pip install tox
7070
- run: tox -e py312-cover,coverage
7171
docs:
72-
runs-on: ubuntu-20.04
72+
runs-on: ubuntu-latest
7373
name: Build the documentation
7474
steps:
7575
- uses: actions/checkout@v4
@@ -81,7 +81,7 @@ jobs:
8181
- run: pip install tox
8282
- run: tox -e docs
8383
lint:
84-
runs-on: ubuntu-20.04
84+
runs-on: ubuntu-latest
8585
name: Lint the package
8686
steps:
8787
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)