diff --git a/.github/workflows/security-checks.yml b/.github/workflows/security-checks.yml new file mode 100644 index 0000000..c58a979 --- /dev/null +++ b/.github/workflows/security-checks.yml @@ -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