Skip to content

Commit 9750a93

Browse files
committed
add copilot setup so that it can work with uv
1 parent cefa9b7 commit 9750a93

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
File renamed without changes.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
copilot-setup-steps:
16+
runs-on: ubuntu-latest
17+
permissions:
18+
contents: read
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v5
22+
23+
- uses: astral-sh/setup-uv@v6
24+
25+
- name: Install
26+
run: uv sync

0 commit comments

Comments
 (0)