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 389b64a commit d80b46bCopy full SHA for d80b46b
.github/workflows/lint-and-test.yml
@@ -61,16 +61,16 @@ jobs:
61
test:
62
runs-on: ubuntu-latest
63
container:
64
- image: sergioteula/pytools
65
- volumes:
66
- - ${{github.workspace}}:/code
+ image: python:3.12
67
steps:
68
- name: Check out code
69
uses: actions/checkout@v4
+ - name: Install dependencies
+ run: pip install coverage certifi six python_dateutil setuptools urllib3
70
- name: Run tests
71
- run: ./scripts/run_tests
+ run: coverage run -m unittest && coverage xml && coverage report
72
- name: Save code coverage file
73
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
74
with:
75
name: coverage
76
path: coverage.xml
0 commit comments