Replace obsolete actions-rs #353
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
- 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 | |
- uses: Swatinem/rust-cache@v2 | |
- 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 | |
- 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 | |
rustup default stable | |
- uses: Swatinem/rust-cache@v2 | |
- name: Test with minimal version dependencies and stable compiler | |
run: cargo +stable test --tests --benches | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
needs: check | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup install --profile default stable | |
- run: cargo +stable fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
needs: check | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup install --profile default nightly | |
- run: cargo +nightly clippy -- -D clippy::pedantic | |
- run: cargo +nightly clippy --all-targets -- -D warnings |