chore: use specific working nightly version

This commit is contained in:
skoupidi
2024-04-13 16:22:24 +03:00
parent d3c1000093
commit ee6f54c99e
3 changed files with 13 additions and 13 deletions

View File

@@ -13,11 +13,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2024-04-05
override: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2024-04-05
target: wasm32-unknown-unknown
override: true
@@ -34,11 +34,11 @@ jobs:
- name: Run test units
run: |
make test
make CARGO="cargo +nightly-2024-04-05" test
- name: Compile all bins
run: |
make
make CARGO="cargo +nightly-2024-04-05"
feature-powerset:
name: Test crate feature powerset on ${{ matrix.os }}
@@ -51,11 +51,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2024-04-05
override: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2024-04-05
target: wasm32-unknown-unknown
override: true
- uses: taiki-e/install-action@cargo-hack
@@ -72,7 +72,7 @@ jobs:
- name: Run feature powerset builds
run: |
make check
make CARGO="cargo +nightly-2024-04-05" check
fmt:
name: rustfmt
@@ -82,8 +82,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: nightly-2024-04-05
components: rustfmt
override: true
- run: |
cargo +nightly fmt -- --check
cargo +nightly-2024-04-05 fmt -- --check