Skip to content

Add Commander-governed native RNA, DNA, and CLI spine #35

Add Commander-governed native RNA, DNA, and CLI spine

Add Commander-governed native RNA, DNA, and CLI spine #35

Workflow file for this run

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