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 d866fe1 commit 707a627Copy full SHA for 707a627
.github/workflows/ci.yml
@@ -71,7 +71,7 @@ jobs:
71
steps:
72
- uses: actions/checkout@v4
73
74
- - uses: actions/cache@v4
+ - uses: actions/cache/restore@v4
75
with:
76
path: |
77
~/.avm
@@ -129,6 +129,21 @@ jobs:
129
run: |
130
cargo test --config "$GROUP_RUNNER"
131
132
+ - uses: actions/cache/save@v4
133
+ if: always()
134
+ with:
135
+ path: |
136
+ ~/.avm
137
+ ~/.cargo/bin/
138
+ ~/.cargo/registry/index/
139
+ ~/.cargo/registry/cache/
140
+ ~/.cargo/git/db/
141
+ ~/.dylint_drivers/
142
+ ~/.rustup/toolchains/
143
+ agave/
144
+ target/dylint/
145
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
146
+
147
all-checks:
148
needs: [test]
149
0 commit comments