Skip to content

Commit 2f6ae10

Browse files
🔧 Add AGENTS.md and copilot-setup-steps workflow (#380)
* Initial plan * 📚 DOCS: Add AGENTS.md and copilot-setup-steps.yml workflow Co-authored-by: chrisjsewell <2997570+chrisjsewell@users.noreply.github.com> * 👌 IMPROVE: Add tox-uv note to AGENTS.md Co-authored-by: chrisjsewell <2997570+chrisjsewell@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: chrisjsewell <2997570+chrisjsewell@users.noreply.github.com>
1 parent 49043e4 commit 2f6ae10

File tree

2 files changed

+490
-0
lines changed

2 files changed

+490
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
16+
permissions:
17+
contents: read
18+
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@v4
22+
23+
- name: Set up Python
24+
uses: actions/setup-python@v5
25+
with:
26+
python-version: "3.11"
27+
cache: pip
28+
29+
- name: Install uv
30+
run: pip install uv
31+
32+
- name: Install pre-commit and pre-commit-uv
33+
run: pip install pre-commit pre-commit-uv
34+
35+
- name: Install tox and tox-uv
36+
run: pip install tox tox-uv

0 commit comments

Comments
 (0)