Skip to content

Commit 88e0aee

Browse files
committed
Update Github action runner to the latest version of Ubuntu
1 parent 375f51b commit 88e0aee

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,19 @@ jobs:
1313
build:
1414
# See https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
1515
# for awailable Python versions on ubuntu
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
# see https://www.python.org/downloads/
20-
python-version: [ '3.6', '3.12' ]
19+
# see https://www.python.org/downloads/
20+
python-version: [ '3.7', '3.13', '3.x' ]
2121

2222
steps:
2323
- uses: actions/checkout@v4
2424
- name: Set up Python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v4
2626
with:
2727
python-version: ${{ matrix.python-version }}
28+
check-latest: true
2829
cache: 'pip' # caching pip dependencies
2930

3031
- name: Install dependencies

0 commit comments

Comments
 (0)