We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f56765 commit 4e49a0aCopy full SHA for 4e49a0a
1 file changed
.github/workflows/build.yml
@@ -34,8 +34,14 @@ jobs:
34
- name: Install Dependencies
35
run: |
36
python -m pip install --upgrade pip
37
+ pip install coveralls pyyaml
38
pip install -e .[cli,tests]
39
- name: Test with PyTest with Coverage
40
41
coverage run -m pytest
42
coverage report
43
+ - name: Submit Coverage to Coveralls
44
+ if: matrix.python-version == '3.12'
45
+ run: coveralls
46
+ env:
47
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
0 commit comments