We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f4d834 commit 2cdca91Copy full SHA for 2cdca91
1 file changed
.github/workflows/ci.yml
@@ -13,13 +13,14 @@ env:
13
jobs:
14
check:
15
runs-on: ubuntu-latest
16
- container: rust:alpine
+ container: rust:1.89
17
18
steps:
19
- name: checkout
20
uses: actions/checkout@v4
21
- - name: bash # required for dtolnay/rust-toolchain on alpine
22
- run: apk add --no-cache bash
+ - uses: Swatinem/rust-cache@v2
+ with:
23
+ cache-all-crates: "true"
24
- name: install
25
uses: dtolnay/rust-toolchain@stable
26
with:
@@ -30,10 +31,13 @@ jobs:
30
31
32
test:
33
34
35
needs: check
36
37
38
39
40
41
42
- name: test
43
run: cargo test --all-features
0 commit comments