We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b446076 commit c64d727Copy full SHA for c64d727
1 file changed
.github/workflows/pytests.yml
@@ -6,6 +6,9 @@ on:
6
jobs:
7
run:
8
runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python-version: ["3.11", "3.12", "3.13"]
12
steps:
13
- name: Checkout code
14
uses: actions/checkout@v2
@@ -16,7 +19,8 @@ jobs:
16
19
- name: Setup Python
17
20
uses: actions/setup-python@v5
18
21
with:
- python-version-file: .python-version
22
+ # python-version-file: .python-version
23
+ python-version: ${{ matrix.python-version }}
24
- name: Install dependencies
25
run: |
26
python -m pip install --upgrade pip
0 commit comments