Skip to content

Commit 6766d2b

Browse files
authored
Merge pull request #352 from input-output-hk/sg/cargo-audit-in-ci
chore: enable cargo-audit in CI
2 parents 53f4cf1 + a1277af commit 6766d2b

File tree

3 files changed

+398
-301
lines changed

3 files changed

+398
-301
lines changed

.cargo/audit.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[advisories]
2+
ignore = []
3+
informational_warnings = []

.github/workflows/run-tests-on-push-to-main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
- name: Run Clippy
2727
run: cargo clippy --all-targets --all-features -- -D warnings
2828

29+
- name: Run Audit
30+
uses: rustsec/[email protected]
31+
with:
32+
token: ${{ secrets.GITHUB_TOKEN }}
33+
2934
- name: Run Build
3035
run: cargo build --verbose
3136

0 commit comments

Comments
 (0)