Skip to content

allow the coverage_nightly cfg #27

allow the coverage_nightly cfg

allow the coverage_nightly cfg #27

Workflow file for this run

name: Test
on:
push:
branches-ignore:
- magick
- 'gh-readonly-queue/**'
pull_request:
merge_group:
jobs:
test:
strategy:
matrix:
toolchain: [stable, 1.59]
fail-fast: false
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: rustup default ${{ matrix.toolchain }}
- run: cargo test --locked
- run: cargo fmt -- --check
if: ${{ matrix.toolchain == 'stable' }}
- run: cargo clippy --locked --all-targets -- -D warnings
if: ${{ matrix.toolchain == 'stable' }}
- run: RUSTDOCFLAGS="-D warnings" cargo doc --locked
if: ${{ matrix.toolchain == 'stable' }}