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 3b72b9b commit 0d1fa4eCopy full SHA for 0d1fa4e
.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
@@ -126,6 +126,21 @@ jobs:
126
run: |
127
cargo test --config "$GROUP_RUNNER"
128
129
+ - uses: actions/cache/save@v4
130
+ if: always()
131
+ with:
132
+ path: |
133
+ ~/.avm
134
+ ~/.cargo/bin/
135
+ ~/.cargo/registry/index/
136
+ ~/.cargo/registry/cache/
137
+ ~/.cargo/git/db/
138
+ ~/.dylint_drivers/
139
+ ~/.rustup/toolchains/
140
+ agave/
141
+ target/dylint/
142
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
143
+
144
all-checks:
145
needs: [test]
146
0 commit comments