Skip to content

Commit afc9d70

Browse files
authored
Update python-app.yml
Update workflow to use proper versions for build scripts.
1 parent 4429554 commit afc9d70

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/python-app.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ name: Build Test Coverage
22
on: [push, pull_request]
33
jobs:
44
run:
5-
runs-on: ubuntu-latest
5+
runs-on: ubuntu-20.04
66
env:
7-
OS: ubuntu-latest
8-
PYTHON: '3.6.8'
7+
OS: ubuntu-20.04
8+
PYTHON: '3.8.10'
99
DISPLAY: :0
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2.3.4
12+
uses: actions/checkout@v3
1313
- name: Setup Python
14-
uses: actions/setup-python@v2.2.2
14+
uses: actions/setup-python@v4
1515
with:
16-
python-version: 3.6.8
16+
python-version: 3.8.10
1717
- name: Generate Report
1818
run: |
1919
pip install -r requirements.txt
2020
sudo apt-get install xvfb
2121
xvfb-run --auto-servernum coverage run --source=chip8 -m unittest
2222
- name: Codecov
23-
uses: codecov/codecov-action@v1.5.2
23+
uses: codecov/codecov-action@v3.1.0

0 commit comments

Comments
 (0)