Skip to content

nextest

nextest #4

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
- name: Build
run: cargo build --all-targets --all-features
- name: Test
run: cargo nextest --all-features --profile ci
- name: Lint
run: cargo clippy -- -D warnings
- name: Format Check
run: cargo fmt -- --check