We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cefa9b7 commit 9750a93Copy full SHA for 9750a93
.github/workflows/check_links.yml renamed to .github/workflows/check-links.yml
.github/workflows/copilot-setup-steps.yml
@@ -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
12
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