refactor: Remove some unnecessary panicking paths in cycle execution #1663
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
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "**.rs" | |
- "**/Cargo.*" | |
- ".github/workflows/test.yml" | |
- "tests/compile-fail/**.stderr" | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
strategy: | |
matrix: | |
rust: | |
- 1.80.0 | |
- stable | |
- beta | |
experimental: | |
- false | |
include: | |
- rust: nightly | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
id: rust-toolchain | |
with: | |
toolchain: ${{ matrix.rust }} | |
components: rustfmt, clippy | |
- uses: taiki-e/install-action@nextest | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ steps.rust-toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.toml') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-${{ steps.rust-toolchain.outputs.cachekey }}- | |
${{ runner.os }}-cargo- | |
- name: Format | |
run: cargo fmt -- --check | |
- name: Clippy | |
run: cargo clippy --workspace --all-features --all-targets -- -D warnings | |
- name: Test | |
run: cargo nextest run --workspace --all-features --all-targets --no-fail-fast | |
- name: Test docs | |
run: cargo test --workspace --all-features --doc | |
- name: Check (without default features) | |
run: cargo check --workspace --no-default-features | |
miri: | |
name: Miri | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Miri | |
uses: dtolnay/rust-toolchain@miri | |
id: rust-toolchain | |
- uses: taiki-e/install-action@nextest | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ steps.rust-toolchain.outputs.cachekey }}-miri-${{ hashFiles('**/Cargo.toml') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-${{ steps.rust-toolchain.outputs.cachekey }}-miri- | |
${{ runner.os }}-cargo-${{ steps.rust-toolchain.outputs.cachekey }}- | |
${{ runner.os }}-cargo- | |
- name: Setup Miri | |
run: cargo miri setup | |
- name: Test with Miri | |
run: cargo miri nextest run --all-features --no-fail-fast --tests | |
env: | |
MIRIFLAGS: -Zmiri-disable-isolation -Zmiri-retag-fields | |
- name: Run examples with Miri | |
run: cargo miri run --example calc | |
benchmarks: | |
# https://github.com/CodSpeedHQ/action/issues/126 | |
if: github.event_name != 'merge_group' | |
name: Benchmarks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust toolchain | |
uses: dtolnay/rust-toolchain@master | |
id: rust-toolchain | |
with: | |
toolchain: stable | |
- name: "Setup codspeed" | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-codspeed | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ steps.rust-toolchain.outputs.cachekey }}-${{ hashFiles('**/Cargo.toml') }} | |
restore-keys: | | |
${{ runner.os }}-cargo-${{ steps.rust-toolchain.outputs.cachekey }}- | |
${{ runner.os }}-cargo- | |
- name: "Build benchmarks" | |
run: cargo codspeed build | |
- name: "Run benchmarks" | |
uses: CodSpeedHQ/action@v3 | |
with: | |
run: cargo codspeed run | |
token: ${{ secrets.CODSPEED_TOKEN }} |