From db0a5ffdbb42ea6596bc71e48039e3b1348e9c76 Mon Sep 17 00:00:00 2001 From: Ajeet D'Souza <98ajeet@gmail.com> Date: Thu, 1 Oct 2020 13:22:45 +0530 Subject: [PATCH] Add workflow for cargo-audit --- .github/workflows/audit.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/audit.yml diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml new file mode 100644 index 0000000..8e21b8a --- /dev/null +++ b/.github/workflows/audit.yml @@ -0,0 +1,17 @@ +name: cargo-audit + +on: + push: + paths: + - "**/Cargo.toml" + - "**/Cargo.lock" + pull_request: + +jobs: + audit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + - uses: actions-rs/audit-check@v1.2.0 + with: + token: ${{ secrets.GITHUB_TOKEN }}