Skip to content

Strip symbols from dev builds, add debugging profile #5

Strip symbols from dev builds, add debugging profile

Strip symbols from dev builds, add debugging profile #5

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
check:
name: fmt + clippy + tests (macOS)
runs-on: macos-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Install nextest
uses: taiki-e/install-action@nextest
- name: Format check
run: cargo fmt --all --check
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: Tests
run: cargo nextest run --workspace