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 7
7
8
8
jobs :
9
9
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
+
10
30
dist :
11
31
runs-on : ubuntu-latest
12
32
steps :
41
61
42
62
PyTest :
43
63
needs :
64
+ - lint
44
65
- standardjs
45
66
strategy :
46
67
matrix :
65
86
66
87
Selenium :
67
88
needs :
89
+ - lint
68
90
- standardjs
69
91
strategy :
70
92
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