when: - event: ["push", "pull_request"] branch: main engine: nixery dependencies: nixpkgs: - clang - rustup - rustfmt - cargo-nextest steps: - name: Install latest stable command: rustup toolchain install stable - name: Format check command: cargo fmt --all --check - name: Tests command: cargo nextest run --workspace --locked --no-fail-fast - name: Doc Tests command: cargo test --workspace --locked --doc --no-fail-fast