Skip to content

Replace obsolete actions-rs #351

Replace obsolete actions-rs

Replace obsolete actions-rs #351

Workflow file for this run

on:
pull_request:
merge_group:
name: Continuous integration
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sh tests/check-msrv-consistency.sh
- run: rustup install --profile minimal stable
- run: cargo +stable check --all-targets
cargo-deny:
name: cargo deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: embarkStudios/cargo-deny-action@v1
test:
name: Test suite
runs-on: ubuntu-latest
needs: check
strategy:
matrix:
toolchain: [stable, beta, nightly, msrv]
fail-fast: false
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ matrix.toolchain }}-${{ hashFiles('Cargo.toml') }}
- name: Install Rust toolchain
run: |
if [ ${{ matrix.toolchain }} = msrv ]; then
toolchain=$(awk -F '"' '/^rust-version =/ {print $2}' Cargo.toml)
else
toolchain=${{ matrix.toolchain }}
fi
rustup install --profile minimal $toolchain
rustup default $toolchain
- name: Test documentation in debug mode
run: cargo test --doc
- name: Test documentation in release mode
run: cargo test --doc --release
- name: Test in debug mode
run: cargo test --tests --benches
- name: Test in release mode
run: cargo test --release --tests --benches
test-minimal-versions:
name: Test with minimal versions
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-nightly-minimal-${{ hashFiles('Cargo.toml') }}
- name: Install nightly Rust toolchain to run cargo with -Z
run: rustup install --profile minimal nightly
- name: Set dependencies to the minimal version allowed
run: cargo +nightly update -Zminimal-versions
- name: Install stable Rust toolchain
run: rustup install --profile minimal stable
- name: Test with minimal version dependencies and stable compiler
run: cargo +stable test --test --benches
fmt:
name: Rustfmt
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
- run: rustup install stable
- run: cargo +stable fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
- run: rustup install nightly
- run: cargo +nightly clippy -- -D clippy::pedantic
- run: cargo +nightly clippy --all-targets -- -D warnings