diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-01-25 12:43:15 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-01-25 12:43:15 +0100 |
| commit | 00ac90357bbd256436846beceba67b38d4743bf6 (patch) | |
| tree | dbdfa8a0a78a3bb9820330d42607d6ca91704abc /.github/workflows/test.yaml | |
| parent | 64ed1bf86950c52e3400c0a536e223a53f48a4b7 (diff) | |
fix: ci
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to '.github/workflows/test.yaml')
| -rw-r--r-- | .github/workflows/test.yaml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 24d4277..2631077 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,9 +17,7 @@ jobs: submodules: true - name: Install stable Rust toolchain - run: | - rustup toolchain install stable - rustup default stable + run: rustup update stable - name: Build (stable) run: cargo +stable build --workspace --exclude wasm-testsuite @@ -36,10 +34,11 @@ jobs: steps: - uses: actions/checkout@v4 + with: + submodules: true + - name: Install nightly Rust toolchain - run: | - rustup toolchain install nightly - rustup default nightly + run: rustup update stable nightly - name: Build (nightly, no default features) run: cargo +nightly build --workspace --exclude wasm-testsuite --no-default-features |
