diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3af8c5..8ae53bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,7 @@ jobs: strategy: fail-fast: false matrix: + toolchain: [ nightly, stable, 1.76.0 ] name: [linux, windows, macos] include: - name: linux @@ -30,6 +31,8 @@ jobs: uses: actions/checkout@v4 - name: Setup rust toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + toolchain: ${{matrix.toolchain}} - name: Build with default features run: cargo build --all-features