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 2304263 commit 59c1683Copy full SHA for 59c1683
.github/workflows/ci.yml
@@ -2,14 +2,13 @@ name: CI Pipeline
2
3
on:
4
push:
5
- branches: [main]
+ branches: [main]
6
pull_request:
7
branches: [main]
8
-
9
10
jobs:
11
test:
12
- runs-on: ubuntu-latest
+ runs-on: windows-latest
13
14
steps:
15
- name: Checkout code
@@ -18,7 +17,7 @@ jobs:
18
17
- name: Set up Python
19
uses: actions/setup-python@v2
20
with:
21
- python-version: "3.8" # Specify the Python version you need
+ python-version: "3.10.11" # Specify the Python version you need
22
23
- name: Install dependencies
24
run: |
@@ -27,5 +26,4 @@ jobs:
27
26
28
- name: Run tests
29
30
- # You can use pytest or any other testing framework
31
pytest
0 commit comments