File tree 1 file changed +5
-7
lines changed 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,21 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
strategy :
17
17
fail-fast : false
18
- matrix :
19
- python-version : ["3.8", "3.9", "3.10"]
20
18
21
19
steps :
22
20
- name : ' ⏳ Checkout repository'
23
21
uses : actions/checkout@v3
24
22
25
- - name : ' 🐍 Set up Python ${{ matrix.python-version }} '
26
- uses : actions/setup-python@v3
23
+ - name : ' 🐍 Set up Python'
24
+ uses : actions/setup-python@v4
27
25
with :
28
- python-version : ${{ matrix.python-version }}
26
+ cache : ' pip'
27
+ python-version : " 3.10"
29
28
30
29
- name : ' 🛠 Install dependencies'
31
30
run : |
32
31
python -m pip install --upgrade pip
33
- python -m pip install flake8 pytest
34
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32
+ python -m pip install flake8==6.0.0 pytest==7.4.0
35
33
36
34
- name : ' 😾 Lint with flake8'
37
35
run : |
You can’t perform that action at this time.
0 commit comments