Skip to content

Commit

Permalink
feat(ci): add a workflow to run cargo audit
Browse files Browse the repository at this point in the history
Signed-off-by: Tarek <tareknaser360@gmail.com>
  • Loading branch information
tareknaser authored and vincenzopalazzo committed Jun 7, 2024
1 parent 3d3661a commit aaed659
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Cargo Audit

on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: "30 1 1,15 * *"

jobs:
cargo_audit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable

- name: Install cargo audit
run: cargo install --locked cargo-audit

- name: Run cargo audit
run: cargo audit

0 comments on commit aaed659

Please sign in to comment.