Skip to content

Commit f6cb581

Browse files
markhallenclaude
andauthored
ci: add Copilot setup steps workflow (#36)
Configure the development environment for GitHub Copilot coding agent with Ruby and bundled dependencies. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 923554b commit f6cb581

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Copilot Setup Steps"
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- .github/workflows/copilot-setup-steps.yml
8+
pull_request:
9+
paths:
10+
- .github/workflows/copilot-setup-steps.yml
11+
12+
jobs:
13+
copilot-setup-steps:
14+
runs-on: ubuntu-latest
15+
16+
permissions:
17+
contents: read
18+
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@v4
22+
23+
- name: Set up Ruby
24+
uses: ruby/setup-ruby@v1
25+
with:
26+
ruby-version: '3.4'
27+
bundler-cache: true

0 commit comments

Comments
 (0)