File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 22
22
run : |
23
23
pip install poetry
24
24
poetry --version
25
- - name : Install dependencies
25
+ - name : Install dependencies and library
26
26
working-directory : ${{ matrix.lib }}
27
- run : poetry install --no-root
27
+ run : poetry install
28
28
- name : Check format
29
29
working-directory : ${{ matrix.lib }}
30
30
run : poetry run black --check .
48
48
run : |
49
49
pip install poetry
50
50
poetry --version
51
- - name : Install dependencies
51
+ - name : Install dependencies and library
52
52
working-directory : ${{ matrix.lib }}
53
- run : poetry install --no-root
53
+ run : poetry install
54
54
- name : Check typing
55
55
working-directory : ${{ matrix.lib }}
56
56
run : poetry run mypy --install-types --non-interactive --strict $(echo "${{ matrix.lib }}" | tr "-" "_")
74
74
run : |
75
75
pip install poetry
76
76
poetry --version
77
- - name : Install dependencies
77
+ - name : Install dependencies and library
78
78
working-directory : ${{ matrix.lib }}
79
- run : poetry install --no-root
79
+ run : poetry install
80
80
- name : Check security
81
81
working-directory : ${{ matrix.lib }}
82
82
run : poetry run bandit -sB105 -r .
@@ -100,9 +100,9 @@ jobs:
100
100
run : |
101
101
pip install poetry
102
102
poetry --version
103
- - name : Install dependencies
103
+ - name : Install dependencies and library
104
104
working-directory : ${{ matrix.lib }}
105
- run : poetry install --no-root
105
+ run : poetry install
106
106
- name : Run tests
107
107
working-directory : ${{ matrix.lib }}
108
108
run : poetry run python -m unittest discover -s tests -v
You can’t perform that action at this time.
0 commit comments