name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test-windows:
name: Windows - cargo nextest
runs-on: windows-latest
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust (stable)
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-nextest
uses: taiki-e/install-action@v2
with:
tool: nextest
- name: Show toolchain versions
run: |
rustc -Vv
cargo -V
cargo nextest --version
- name: Cache cargo registry and build
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Build (tests)
run: cargo test --no-run --workspace --all-targets
- name: Run tests with nextest
run: cargo nextest run --workspace --all-targets