1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
name: Build with MSRV (minimal supported Rust version) on: workflow_dispatch: push: paths: - 'Cargo.lock' jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@1.62 - run: cargo check