Add Commander-governed native RNA, DNA, and CLI spine #38
Workflow file for this run
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: Native core gate | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - Cargo.toml | |
| - Cargo.lock | |
| - l64-native/** | |
| - .github/workflows/native-core.yml | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install stable Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - name: Cache Cargo | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Check formatting | |
| run: cargo fmt --all --check | |
| - name: Test workspace | |
| run: cargo test -q | |
| - name: Lint native core | |
| run: cargo clippy -p l64-native --all-targets -- -D warnings |