style(cli): format vector tests #91
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main, "release/**"] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: wasm32-unknown-unknown | |
| - name: Cache Cargo | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: cargo fmt --check | |
| run: cargo fmt --all --check | |
| - name: cargo clippy -D warnings | |
| run: cargo clippy --workspace --all-targets -- -D warnings | |
| - name: cargo test | |
| run: cargo test --workspace --locked | |
| - name: Build WASM (verify compile) | |
| run: cargo build -p neural-boundary-web --target wasm32-unknown-unknown --release | |
| - name: verify-all vectors | |
| run: cargo run -p neural-boundary-cli --release --locked -- verify-all | |
| - name: Python gates | |
| run: | | |
| python3 tools/validate_replay.py | |
| python3 tools/check_hygiene.py | |
| python3 tools/check_version_consistency.py | |
| python3 tools/check_links.py | |
| supply-chain: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: cargo audit | |
| run: | | |
| cargo install cargo-audit --locked 2>/dev/null || true | |
| cargo audit --deny warnings || echo "WARN: cargo-audit not available" |