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 1d00662 commit 96a8f3dCopy full SHA for 96a8f3d
.github/workflows/coverage.yml
@@ -11,11 +11,16 @@ jobs:
11
Coverage:
12
runs-on: ubuntu-latest
13
steps:
14
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
15
- name: Setup Python environment
16
- uses: actions/setup-python@v3.1.4
+ uses: actions/setup-python@v4
17
with:
18
- python-version: '3.7'
+ python-version: '3.9'
19
+ - name: Setup virtual environment
20
+ run: |
21
+ python -m venv venv
22
+ source venv/bin/activate
23
+ python -m pip install --upgrade pip
24
- name: Install Requirements
25
run: |
26
python -m pip install --upgrade pip
0 commit comments