Skip to content

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / .github/workflows/check.yml

Invalid workflow file

The workflow is not valid. .github/workflows/check.yml (Line: 10, Col: 3): The identifier 'check stable' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters. .github/workflows/check.yml (Line: 19, Col: 3): The identifier 'check msrv' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
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