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: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
# We assume the runner is on x86. | ||
jobs: | ||
check stable: | ||
Check failure on line 10 in .github/workflows/check.yml GitHub Actions / .github/workflows/check.ymlInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: rustup toolchain default stable | ||
- run: cargo fmt --check | ||
- run: cargo clippy --quiet --frozen --workspace --all-targets -- -D warnings | ||
- run: cargo xtask | ||
check msrv: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: rustup toolchain default 1.71 | ||
- run: cargo clippy --quiet --frozen --workspace --all-targets -- -D warnings | ||
- run: cargo xtask |