diff --git a/.github/workflows/sec.yml b/.github/workflows/sec.yml new file mode 100644 index 0000000..833ddcc --- /dev/null +++ b/.github/workflows/sec.yml @@ -0,0 +1,17 @@ +on: + push: + paths: + - '**/Cargo.toml' + - '**/Cargo.lock' + +name: Security Audit + +jobs: + security: + name: Security + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}