We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fd31bb commit 0656282Copy full SHA for 0656282
.github/workflows/ci.yml
@@ -50,15 +50,11 @@ jobs:
50
fail-fast: false
51
matrix:
52
os: [ubuntu-latest, windows-latest]
53
- # When updating this, the reminder to update the minimum supported
54
- # Rust version in Cargo.toml.
55
- rust: ['1.63']
56
steps:
57
- uses: actions/checkout@v4
58
- - name: Install Rust
59
- # --no-self-update is necessary because the windows environment cannot self-update rustup.exe.
60
- run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }}
61
- - run: cargo build
+ - name: Install cargo-hack
+ uses: taiki-e/install-action@cargo-hack
+ - run: cargo hack build --rust-version
62
63
clippy:
64
runs-on: ubuntu-latest
0 commit comments