8000 Update Python versions in the CI workflow. (#478) · python/core-workflow@7e2939a · GitHub
[go: up one dir, main page]

Skip to content

Commit 7e2939a

Browse files
Update Python versions in the CI workflow. (#478)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
1 parent 3097103 commit 7e2939a

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,14 @@ jobs:
66
build_ubuntu:
77
strategy:
88
matrix:
9-
python:
10-
- '3.7'
11-
- '3.8'
12-
- '3.9'
13-
- '3.10'
14-
- '3.11'
15-
name: ${{ matrix.python }}
9+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
10+
name: ${{ matrix.python-version }}
1611
runs-on: ubuntu-latest
1712
steps:
1813
- uses: actions/checkout@v3
1914
- uses: actions/setup-python@v4
2015
with:
21-
python-version: ${{ matrix.python }}
16+
python-version: ${{ matrix.python-version }}
2217
cache: pip
2318
cache-dependency-path: ".github/workflows/tests.yml"
2419
- name: setup

0 commit comments

Comments
 (0)
0