Skip to content

Commit 7f518a2

Browse files
authored
Update build.yml
1 parent 2ca9a8c commit 7f518a2

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,20 @@ jobs:
1313

1414
runs-on: ubuntu-latest
1515
strategy:
16+
fail-fast: false
1617
matrix:
17-
python-version: [3.6, 3.7, 3.8, 3.9]
18+
python-version: ["3.11", "3.12", "3.13"]
1819

1920
steps:
20-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2122
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v3
2324
with:
2425
python-version: ${{ matrix.python-version }}
2526
- name: Install dependencies
2627
run: |
2728
python -m pip install --upgrade pip
28-
pip install flake8 pytest
29+
python -m pip install flake8 pytest
2930
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3031
- name: Lint with flake8
3132
run: |

0 commit comments

Comments
 (0)