Skip to content

Commit

Permalink
Drop CI audit dependence (#434)
Browse files Browse the repository at this point in the history
Run the CI tests regardless of the outcome of the `audit` job.
Sometimes, we simply want to ignore the audit results in a certain PR
but still make sure our tests pass.
  • Loading branch information
AdrianSosic authored Nov 22, 2024
2 parents b402c74 + 0db17fe commit ca8b221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
tox -e audit-${{ matrix.py-version.tox }}
coretest:
needs: [typecheck, audit]
needs: [typecheck]
strategy:
matrix:
py-version: [ {semantic: '3.10', tox: 'py310'} ]
Expand All @@ -168,7 +168,7 @@ jobs:
tox -e coretest-${{ matrix.py-version.tox }}
fulltest:
needs: [typecheck, audit]
needs: [typecheck]
strategy:
matrix:
py-version: [ {semantic: '3.10', tox: 'py310'}, {semantic: '3.12', tox: 'py312'} ]
Expand Down

0 comments on commit ca8b221

Please sign in to comment.