.github/workflows: temporary workaround for nightly build

This commit is contained in:
skoupidi
2024-02-11 12:59:55 +02:00
parent 7155548f45
commit 1eaf5fae35
2 changed files with 12 additions and 12 deletions

View File

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