diff --git a/.github/workflows/audit-check.yml b/.github/workflows/audit-check.yml new file mode 100644 index 0000000..e4a6973 --- /dev/null +++ b/.github/workflows/audit-check.yml @@ -0,0 +1,14 @@ +name: Security audit +on: + push: + paths: + - "**/Cargo.toml" + - "**/Cargo.lock" +jobs: + security_audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: rustsec/audit-check@v1.4.1 + with: + token: ${{ secrets.GITHUB_TOKEN }}