We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d716da commit e121eddCopy full SHA for e121edd
.github/workflows/main.yml
@@ -19,20 +19,12 @@ jobs:
19
with:
20
python-version: ${{ matrix.python-version }}
21
- name: Install deploy dependencies
22
- run: |
23
- pip install .[deploy]
24
- - name: Install test dependencies
25
26
- pip install .[test]
+ run: pip install --group deploy
27
- name: Install code dependencies
28
29
- pip install .
+ run: pip install .
30
- name: Lint with pylint
31
32
- pylint -E src
+ run: pylint -E src
33
- name: Security vulnerability analysis with bandit
34
35
- bandit -c pyproject.toml -r -lll .
+ run: bandit -c pyproject.toml -r -lll .
36
- name: Test with pytest
37
38
- pytest
+ run: pytest
0 commit comments