We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730346d commit 4b5d92aCopy full SHA for 4b5d92a
.github/workflows/python-app.yml
@@ -4,18 +4,17 @@ on: [push]
4
5
jobs:
6
reproduce-issue:
7
- runs-on: ubuntu-latest
+ runs-on: windows-latest
8
steps:
9
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
10
11
- - name: Set up Python 3.12
12
- uses: actions/setup-python@v5
+ - name: Set up Python 3.9.13
+ uses: actions/setup-python@v4
13
with:
14
- python-version: 3.12
15
- cache: 'pip'
+ python-version: 3.9.13
+
16
17
- # - name: Install dependencies
18
- # run: |
19
- # # python -m pip install --upgrade pip
20
- # pip install isort
+ - name: Install dependencies
+ run: |
+ pip install -r requirements.txt
21
0 commit comments