Skip to content

Commit d462eff

Browse files
authored
Add GitHub Actions workflow for Copilot setup
1 parent 72a9639 commit d462eff

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Copilot Setup Steps"
2+
on:
3+
workflow_dispatch:
4+
push:
5+
paths: [.github/workflows/copilot-setup-steps.yml]
6+
pull_request:
7+
paths: [.github/workflows/copilot-setup-steps.yml]
8+
9+
jobs:
10+
copilot-setup-steps:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
env:
15+
PIP_TIMEOUT: 600
16+
PIP_RETRIES: 2
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v5
20+
- name: Set up Python
21+
uses: actions/setup-python@v5
22+
with:
23+
python-version: "3.12"
24+
cache: "pip"
25+
- name: Install package and dev dependencies
26+
run: |
27+
pip install -r requirements.txt

0 commit comments

Comments
 (0)