We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2129739 commit c90096fCopy full SHA for c90096f
.github/workflows/copilot-setup-steps.yml
@@ -252,12 +252,15 @@ jobs:
252
- name: Checkout code
253
uses: actions/checkout@v5
254
255
- - name: Setup Rust and install git-ai
+ - name: Restore Rust cache
256
+ uses: Swatinem/rust-cache@v2
257
+ with:
258
+ cache-on-failure: true
259
+ key: ${{ needs.setup-and-validate.outputs.cache-key }}
260
+
261
+ - name: Install git-ai
262
run: |
- curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
263
source ~/.cargo/env
- rustup toolchain install nightly
- rustup default nightly
264
cargo install --path . --debug
265
266
- name: Install fish shell for integration tests
0 commit comments