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.
2 parents c2c78de + a8872d7 commit df11207Copy full SHA for df11207
.github/workflows/main.yml
@@ -64,6 +64,20 @@ jobs:
64
- run: cargo doc --all-features
65
- run: cargo clippy --all-features -- -D warnings
66
67
+ audit:
68
+ name: Security Audit
69
+ runs-on: ubuntu-latest
70
+ steps:
71
+ - uses: actions/checkout@v4
72
+
73
+ - name: Generate Cargo.lock # explicitly generate the lockfile, see https://github.com/rustsec/audit-check/issues/27
74
+ run: cargo generate-lockfile
75
76
+ - name: Audit Check
77
+ uses: rustsec/[email protected]
78
+ with:
79
+ token: ${{ secrets.GITHUB_TOKEN }}
80
81
wasm:
82
name: WebAssembly
83
runs-on: ubuntu-latest
0 commit comments