File tree Expand file tree Collapse file tree 3 files changed +27
-5
lines changed Expand file tree Collapse file tree 3 files changed +27
-5
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 77
88jobs :
99
10+ lint :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ lint-command :
15+ - bandit -r . -x ./tests
16+ - black --check --diff .
17+ - flake8 .
18+ - isort --check-only --diff .
19+ - pydocstyle .
20+ steps :
21+ - uses : actions/checkout@v3
22+ - uses : actions/setup-python@v4
23+ with :
24+ python-version : " 3.x"
25+ cache : ' pip'
26+ cache-dependency-path : ' linter-requirements.txt'
27+ - run : python -m pip install -r linter-requirements.txt
28+ - run : ${{ matrix.lint-command }}
29+
1030 dist :
1131 runs-on : ubuntu-latest
1232 steps :
4161
4262 PyTest :
4363 needs :
64+ - lint
4465 - standardjs
4566 strategy :
4667 matrix :
6586
6687 Selenium :
6788 needs :
89+ - lint
6890 - standardjs
6991 strategy :
7092 matrix :
Original file line number Diff line number Diff line change 1+ bandit==1.7.4
2+ black==22.10.0
3+ flake8==5.0.4
4+ isort==5.10.1
5+ pydocstyle[toml]==6.1.1
You can’t perform that action at this time.
0 commit comments