Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/security-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Rust Security Checks

on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 3 * * 1'

jobs:
cargo_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Cargo Audit
run: cargo audit
continue-on-error: true