Skip to content

chore(sec): pipeline for security #13

chore(sec): pipeline for security

chore(sec): pipeline for security #13

Workflow file for this run

name: CI
on:
push: { branches: ["**"] }
pull_request: { branches: ["**"] }
jobs:
ci:
name: Rust CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust (stable)
uses: dtolnay/rust-toolchain@stable
- name: Cache Cargo
uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --all -- --check
- name: Clippy (deny warnings)
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Unit tests
run: cargo test --all --all-features --verbose