chore: Setup workflows

This commit is contained in:
2026-04-03 04:30:13 +02:00
parent df87e9a19d
commit 812ae606c0
4 changed files with 94 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
name: Audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
schedule:
- cron: "0 0 * * *"
jobs:
audit:
name: cargo audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITEA_TOKEN }}