We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a017c3c commit b76e466Copy full SHA for b76e466
.github/workflows/test.yml
@@ -23,16 +23,6 @@ jobs:
23
run: |
24
python -m pip install --upgrade pip
25
pip install ".[dev]"
26
- - name: Audit Python packages for known vulnerabilities
27
- run: |
28
- if ! RES=$(ossaudit --installed --config setup.cfg); then
29
- RES="${RES//'%'/'%25'}"
30
- RES="${RES//$'\n'/'%0A'}"
31
- RES="${RES//$'\r'/'%0D'}"
32
- echo "::error ::${RES}"
33
- exit 1
34
- fi
35
- echo ${RES}
36
- name: Format with black
37
38
if ! RES=$(black --check $(git diff --name-only --diff-filter=AM master -- "*.py") 2>&1); then
0 commit comments