File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
steps :
7
7
- uses : actions/checkout@v2
8
8
- uses : actions/setup-python@v2
9
- - run : pip install bandit black codespell flake8 isort pytest pyupgrade tox
10
- - run : bandit -r . || true
9
+ - run : pip install --upgrade pip
10
+ - run : pip install black codespell flake8 isort pytest pyupgrade tox
11
11
- run : black --check . || true
12
- - run : codespell --quiet-level=2 || true # --ignore-words-list="" --skip=""
12
+ - run : codespell --quiet-level=2 # --ignore-words-list="" --skip=""
13
13
- run : flake8 . --count --show-source --statistics
14
- - run : isort --profile black . || true
14
+ - run : isort --profile black .
15
15
- run : tox
16
- - run : pip install -r requirements.txt || true
17
- - run : pytest . || true
16
+ - run : pip install -e .
17
+ - run : pytest .
18
18
- run : pytest --doctest-modules . || true
19
19
- run : shopt -s globstar && pyupgrade --py36-plus **/*.py || true
You can’t perform that action at this time.
0 commit comments