Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ jobs:
components: rustfmt
- run: cargo +nightly fmt --all -- --check

audit:
name: cargo audit
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v7
- uses: taiki-e/install-action@cargo-audit
- run: cargo audit

clippy:
name: clippy (${{ matrix.os }})
runs-on: ${{ matrix.os }}
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions devkit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ programs = ["git"]
args = ["worktree", "remove"]
reason = "Use devkit's issue binary to remove worktrees: issue end [branch-name]"

[tasks.audit]
description = "Check Cargo.lock against the RustSec advisory database"
run = ["cargo", "audit"]
guard = true

[tasks.build]
description = "Build the workspace"
run = ["cargo", "build", "--workspace", "--locked"]
Expand Down
Loading