-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (50 loc) · 1.58 KB
/
Copy pathci.yml
File metadata and controls
62 lines (50 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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"