Skip to content

Commit 0761638

Browse files
Copilotjbcoe
andauthored
feat: add copilot-setup-steps.yml to pre-install uv and Python dependencies
Agent-Logs-Url: https://github.com/jbcoe/cc-protocol/sessions/22b17330-4936-4def-954a-0659f1a3e8ab Co-authored-by: jbcoe <777363+jbcoe@users.noreply.github.com>
1 parent 1ef44a2 commit 0761638

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "Copilot Setup Steps"
2+
3+
# Automatically run the setup steps when they are changed to allow for easy validation, and
4+
# allow manual testing through the repository's "Actions" tab
5+
on:
6+
workflow_dispatch:
7+
push:
8+
paths:
9+
- .github/workflows/copilot-setup-steps.yml
10+
pull_request:
11+
paths:
12+
- .github/workflows/copilot-setup-steps.yml
13+
14+
jobs:
15+
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
16+
copilot-setup-steps:
17+
runs-on: ubuntu-latest
18+
19+
permissions:
20+
contents: read
21+
22+
steps:
23+
- name: Checkout code
24+
uses: actions/checkout@v4
25+
26+
- name: Install uv
27+
uses: astral-sh/setup-uv@v5
28+
29+
- name: Install Python dependencies
30+
run: uv sync

0 commit comments

Comments
 (0)