diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a21ebf..cb588c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,11 +57,11 @@ jobs: if: startsWith(matrix.os, 'ubuntu') - run: cargo hack build --feature-powerset --no-dev-deps - name: Add rust-src - if: matrix.rust == 'nightly' + if: startsWith(matrix.rust, 'nightly') run: rustup component add rust-src - name: Check selected Tier 3 targets - if: matrix.rust == 'nightly' && matrix.os == 'ubuntu-latest' - run: cargo +nightly check -Z build-std --target=riscv32imc-esp-espidf + if: startsWith(matrix.rust, 'nightly') && matrix.os == 'ubuntu-latest' + run: cargo check -Z build-std --target=riscv32imc-esp-espidf cross: runs-on: ${{ matrix.os }}