We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f9310f commit c5401bcCopy full SHA for c5401bc
.github/workflows/codecov.yml
@@ -21,13 +21,21 @@ jobs:
21
- name: Checkout submodules
22
run: git submodule update --init --recursive
23
24
- - uses: dtolnay/rust-toolchain@stable
+ - name: Install stable toolchain
25
+ uses: dtolnay/rust-toolchain@stable
26
+
27
+ - uses: Swatinem/rust-cache@v2
28
29
- name: Install llvm-tools and grcov
30
run: |
31
rustup component add llvm-tools-preview
32
cargo install grcov
33
34
+ - name: Install dependencies
35
+ run: |
36
+ sudo apt-get install -y cmake ninja-build binaryen;
37
+ cargo install wasm-pack --version=0.13.1;
38
39
- name: Clean previous builds
40
run: cargo clean
41
0 commit comments