We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 375f51b commit 88e0aeeCopy full SHA for 88e0aee
1 file changed
.github/workflows/python-package.yml
@@ -13,18 +13,19 @@ jobs:
13
build:
14
# See https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
15
# for awailable Python versions on ubuntu
16
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
17
strategy:
18
matrix:
19
- # see https://www.python.org/downloads/
20
- python-version: [ '3.6', '3.12' ]
+ # see https://www.python.org/downloads/
+ python-version: [ '3.7', '3.13', '3.x' ]
21
22
steps:
23
- uses: actions/checkout@v4
24
- name: Set up Python ${{ matrix.python-version }}
25
uses: actions/setup-python@v4
26
with:
27
python-version: ${{ matrix.python-version }}
28
+ check-latest: true
29
cache: 'pip' # caching pip dependencies
30
31
- name: Install dependencies
0 commit comments