on: [push, pull_request]
name: Main CI
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
test:
name: Test (${{ matrix.rust }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- rust: "1.70.0"
args: --manifest-path tests/msrv/Cargo.toml --verbose
- rust: "stable"
args: --verbose --all-features
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install matrix toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: ${{ matrix.args }}
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run MSRV harness cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --manifest-path tests/msrv/Cargo.toml --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features -- -D warnings -A deprecated
- name: Run MSRV harness cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --manifest-path tests/msrv/Cargo.toml --all-targets -- -D warnings -A deprecated