Skip to content

Commit c054903

Browse files
Copilotg3force
andcommitted
Replace setup.sh with copilot-setup-steps.yml workflow
Co-authored-by: g3force <779094+g3force@users.noreply.github.com>
1 parent b9d040a commit c054903

File tree

2 files changed

+33
-27
lines changed

2 files changed

+33
-27
lines changed

.github/copilot/setup.sh

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
permissions:
16+
contents: read
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v6
20+
21+
- name: Install uv
22+
uses: astral-sh/setup-uv@v7
23+
with:
24+
version: "0.10.2"
25+
enable-cache: true
26+
27+
- name: Setup Python
28+
uses: actions/setup-python@v6
29+
with:
30+
python-version-file: "pyproject.toml"
31+
32+
- name: Install dependencies
33+
run: uv sync --all-packages

0 commit comments

Comments
 (0)