We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd48631 commit 5268eccCopy full SHA for 5268ecc
.github/workflows/spa-server-ci.yml
@@ -14,20 +14,8 @@ jobs:
14
- uses: actions/checkout@v3
15
with:
16
submodules: true
17
- - name: Install Rust
18
- uses: actions-rs/toolchain@v1
19
- with:
20
- toolchain: stable
21
- - name: Cache cargo registry
22
- uses: actions/cache@v2
23
24
- path: ~/.cargo/registry
25
- key: cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
26
- - name: Cache cargo index
27
28
29
- path: ~/.cargo/git
30
- key: cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
+ - run: rustup toolchain install stable
+ - uses: Swatinem/rust-cache@v2
31
- name: run integration test
32
# --show-output
33
run: cargo test -p tests --test starter -j 1 -- --test-threads 1
0 commit comments