Skip to content

Commit 96a8f3d

Browse files
committed
Updating coverage.yml
1 parent 1d00662 commit 96a8f3d

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/coverage.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,16 @@ jobs:
1111
Coverage:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Setup Python environment
16-
uses: actions/setup-python@v3.1.4
16+
uses: actions/setup-python@v4
1717
with:
18-
python-version: '3.7'
18+
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
1924
- name: Install Requirements
2025
run: |
2126
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)