We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17abec1 + 27967f0 commit 9c462b0Copy full SHA for 9c462b0
1 file changed
.github/workflows/copilot-setup-steps.yml
@@ -0,0 +1,19 @@
1
+name: "Copilot Setup Steps"
2
+
3
+on: workflow_dispatch
4
5
+jobs:
6
+ copilot-setup-steps:
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ contents: read
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v4
13
14
+ - name: Set up uv
15
+ uses: astral-sh/setup-uv@v6
16
+ with:
17
+ enable-cache: true
18
+ - run: uv python install 3.11
19
+ - run: uv sync --all-extras --all-groups --frozen
0 commit comments