Skip to content

build: update to modern verions of plugins, etc #30

build: update to modern verions of plugins, etc

build: update to modern verions of plugins, etc #30

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- uses: Swatinem/rust-cache@v2
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Check formatting
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose --workspace --all-features
- name: Clippy
run: cargo clippy --workspace --all-features -- -D warnings
- name: unit tests
run: cargo nextest run --verbose --workspace --all-features
- name: Doctests
run: cargo test --doc --workspace --all-features