We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be0c9fe + 48c57d5 commit 3ac0f25Copy full SHA for 3ac0f25
1 file changed
.github/copilot-setup-steps.yml
@@ -0,0 +1,21 @@
1
+# Configuration for GitHub Copilot Coding Agent
2
+# This file specifies the runner and setup steps for Copilot
3
+
4
+runs-on: ubuntu-22.04-xl
5
6
+steps:
7
+ - name: Install Rust toolchain
8
+ uses: dtolnay/rust-toolchain@stable
9
+ with:
10
+ components: rustfmt, clippy
11
12
+ - name: Cache cargo registry
13
+ uses: actions/cache@v4
14
15
+ path: |
16
+ ~/.cargo/registry
17
+ ~/.cargo/git
18
+ target
19
+ key: ${{ runner.os }}-cargo-stable-${{ hashFiles('**/Cargo.lock') }}
20
+ restore-keys: |
21
+ ${{ runner.os }}-cargo-
0 commit comments