We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 230166e commit 0f5d2caCopy full SHA for 0f5d2ca
.github/workflows/lint_python.yml
@@ -4,8 +4,10 @@ jobs:
4
lint_python:
5
runs-on: ubuntu-latest
6
steps:
7
- - uses: actions/checkout@v2
8
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v4
9
+ with:
10
+ python-version: 3.x
11
- run: pip install --upgrade pip
12
- run: pip install black codespell flake8 isort mypy pytest pyupgrade tox
13
- run: black --check .
@@ -17,4 +19,4 @@ jobs:
17
19
- run: mypy --ignore-missing-imports . || true
18
20
- run: pytest .
21
- run: pytest --doctest-modules . || true
- - run: shopt -s globstar && pyupgrade --py36-plus **/*.py
22
+ - run: shopt -s globstar && pyupgrade --py37-plus **/*.py
0 commit comments