Skip to content

Commit 4e49a0a

Browse files
committed
Update: Integrate coverage report submission to Coveralls
1 parent 3f56765 commit 4e49a0a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,14 @@ jobs:
3434
- name: Install Dependencies
3535
run: |
3636
python -m pip install --upgrade pip
37+
pip install coveralls pyyaml
3738
pip install -e .[cli,tests]
3839
- name: Test with PyTest with Coverage
3940
run: |
4041
coverage run -m pytest
4142
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

Comments
 (0)