File tree 4 files changed +151
-462
lines changed
4 files changed +151
-462
lines changed Original file line number Diff line number Diff line change 6
6
python-test :
7
7
runs-on : ubuntu-latest
8
8
9
- strategy :
10
- matrix :
11
- python-version : [3.8]
12
-
13
9
steps :
14
10
-
15
- uses : actions/checkout@v2
11
+ uses : actions/checkout@v4
16
12
-
17
13
name : Set up Python ${{ matrix.python-version }}
18
- uses : actions/setup-python@v2
14
+ uses : actions/setup-python@v4
19
15
with :
20
- python-version : ${{ matrix.python-version }}
16
+ python-version : ' 3.11 '
21
17
-
22
18
name : Install dependencies
23
19
run : |
27
23
-
28
24
name : Run tests
29
25
run : |
30
- poetry run isort --check-only --diff --line-width=100 .
31
- poetry run black --check --diff --line-length=100 .
26
+ poetry run isort --check-only --diff .
27
+ poetry run black --check --diff .
32
28
poetry run pylint --fail-under 7.0 $(git ls-files '*.py')
33
- poetry run pytest
29
+ poetry run pytest
You can’t perform that action at this time.
0 commit comments