File tree Expand file tree Collapse file tree 3 files changed +18
-18
lines changed Expand file tree Collapse file tree 3 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
tests :
11
11
name : Python ${{ matrix.python-version }}
12
- runs-on : ubuntu-20.04
12
+ runs-on : ubuntu-latest
13
13
14
14
strategy :
15
15
matrix :
16
16
python-version :
17
- - 3.6
18
- - 3.7
19
- - 3.8
20
- - 3.9
17
+ - " 3.10"
18
+ - " 3.12"
19
+ - " 3.14"
21
20
22
21
steps :
23
- - uses : actions/checkout@v2
22
+ - uses : actions/checkout@v5
24
23
25
- - uses : actions/setup-python@v2
24
+ - uses : actions/setup-python@v6
26
25
with :
27
26
python-version : ${{ matrix.python-version }}
27
+ allow-prereleases : true
28
28
29
- - uses : actions/cache@v2
29
+ - uses : actions/cache@v4
30
30
with :
31
31
path : ~/.cache/pip
32
32
key : ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }}
Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
pre-commit :
11
- runs-on : ubuntu-20.04
11
+ runs-on : ubuntu-latest
12
12
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v5
15
15
with :
16
16
fetch-depth : 0
17
17
18
- - uses : actions/setup-python@v2
18
+ - uses : actions/setup-python@v6
19
19
20
- - uses : pre-commit/action@v2 .0.0
20
+ - uses : pre-commit/action@v3 .0.1
21
21
with :
22
22
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 16
16
- id : black
17
17
language_version : python3
18
18
- repo : https://github.com/pycqa/isort
19
- rev : 5.10 .1
19
+ rev : 6.0 .1
20
20
hooks :
21
21
- id : isort
22
22
- repo : https://github.com/PyCQA/flake8
27
27
- flake8-bugbear
28
28
- flake8-comprehensions
29
29
- flake8-tidy-imports
30
- - repo : https://github.com/mgedmin/check-manifest
31
- rev : " 0.48"
32
- hooks :
33
- - id : check-manifest
34
- args : [--no-build-isolation]
30
+ # - repo: https://github.com/mgedmin/check-manifest
31
+ # rev: "0.48"
32
+ # hooks:
33
+ # - id: check-manifest
34
+ # args: [--no-build-isolation]
You can’t perform that action at this time.
0 commit comments