Initial commit
Some checks failed
Cargo test & clippy / build (push) Has been cancelled
Cargo test & clippy / rust-clippy-analyze (push) Has been cancelled
Cargo security audit / audit (push) Failing after 4s

This commit is contained in:
2024-03-02 16:04:35 +01:00
commit 16dd18b400
21 changed files with 3179 additions and 0 deletions

23
.github/workflows/cargo-audit.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Cargo security audit
on:
schedule:
- cron: "31 1 * * *"
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
jobs:
audit:
defaults:
run:
working-directory: ./backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}