Skip to content

feat: close phase 6 and harden external validation #25

feat: close phase 6 and harden external validation

feat: close phase 6 and harden external validation #25

Workflow file for this run

name: ci
on:
push:
branches: [main, master]
pull_request:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt, clippy, llvm-tools
- name: Cache Rust artifacts
uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Install cargo-deny
uses: taiki-e/install-action@v2
with:
tool: cargo-deny
- name: Install typos-cli
uses: taiki-e/install-action@v2
with:
tool: typos-cli
- name: Format
run: cargo fmt-check
- name: Lint
run: cargo lint
- name: Tests
run: cargo tests
- name: Typos
run: typos
- name: Deny
run: cargo deny-check
- name: Coverage
run: cargo cov-check