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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ jobs:
run: cargo doc --workspace --all-features --no-deps

- name: Install cargo-audit
run: cargo install cargo-audit
uses: taiki-e/install-action@v2
with:
tool: cargo-audit

- name: Run Security Audit
run: cargo audit
6 changes: 6 additions & 0 deletions ci-local.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ if ! command -v cargo-audit &> /dev/null; then
cargo install cargo-audit
fi

# Ensure cargo-nextest is installed
if ! command -v cargo-nextest &> /dev/null; then
echo "Installing cargo-nextest..."
cargo install cargo-nextest --locked
fi

# Run all CI steps locally
echo "Checking Formatting..."
cargo fmt --all -- --check || (echo "Formatting issues found, please run 'cargo fmt' to auto-fix." && exit 1)
Expand Down
Loading