Skip to content

chore(workspace): create baseline migration scaffold #1

chore(workspace): create baseline migration scaffold

chore(workspace): create baseline migration scaffold #1

Workflow file for this run

name: ci
on:
push:
branches: ["main", "master"]
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Restore cargo cache
uses: Swatinem/rust-cache@v2
- name: Install cargo-nextest
uses: taiki-e/install-action@cargo-nextest
- name: cargo fmt
run: cargo fmt --all --check
- name: cargo clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: cargo nextest
run: cargo nextest run --workspace --all-features
- name: cargo doc tests
run: cargo test --doc --workspace