We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ca9a8c commit 7f518a2Copy full SHA for 7f518a2
.github/workflows/build.yml
@@ -13,19 +13,20 @@ jobs:
13
14
runs-on: ubuntu-latest
15
strategy:
16
+ fail-fast: false
17
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9]
18
+ python-version: ["3.11", "3.12", "3.13"]
19
20
steps:
- - uses: actions/checkout@v2
21
+ - uses: actions/checkout@v3
22
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v2
23
+ uses: actions/setup-python@v3
24
with:
25
python-version: ${{ matrix.python-version }}
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
- pip install flake8 pytest
29
+ python -m pip install flake8 pytest
30
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
- name: Lint with flake8
32
0 commit comments