Skip to content

Commit 48c57d5

Browse files
CopilotSteake
andcommitted
Add copilot-setup-steps.yml to enable larger runner for Copilot
Co-authored-by: Steake <530040+Steake@users.noreply.github.com>
1 parent 97dc804 commit 48c57d5

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/copilot-setup-steps.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)