summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-01-25 12:43:15 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-01-25 12:43:15 +0100
commit00ac90357bbd256436846beceba67b38d4743bf6 (patch)
treedbdfa8a0a78a3bb9820330d42607d6ca91704abc /.github
parent64ed1bf86950c52e3400c0a536e223a53f48a4b7 (diff)
fix: ci
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yaml11
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