feat: add CI, audit, publish, and dependabot workflows

This commit is contained in:
Manuel Raimann
2026-01-30 17:25:01 +01:00
parent 4db6e56466
commit 727906b3bb
5 changed files with 242 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
schedule:
- cron: '0 0 * * *'
permissions:
contents: read
issues: write
checks: write
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Rust
run: |
rustup override set stable
rustup update stable
- uses: rustsec/audit-check@v2.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}