We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72a9639 commit d462effCopy full SHA for d462eff
1 file changed
.github/workflows/copilot-setup-steps.yml
@@ -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
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