We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1221dc8 commit 6b0f0b3Copy full SHA for 6b0f0b3
.github/workflows/ci.yml
@@ -71,11 +71,20 @@ jobs:
71
uses: actions/checkout@v5
72
- name: Install package
73
run: |
74
- pip install --upgrade pip setuptools
+ pip install --upgrade pip setuptools coverage
75
pip install .
76
- name: Run tests (unittest)
77
78
- python -m unittest discover -v || true
+ make coverage
79
+ - name: Coveralls upload
80
+ uses: coverallsapp/github-action@v2
81
+ if: "${{ success() }}"
82
+ with:
83
+ github-token: "${{ secrets.GITHUB_TOKEN }}"
84
+ flag-name: "python-2.7"
85
+ parallel: true
86
+ format: cobertura
87
+ files: coverage.xml
88
- name: Legacy note
89
run: echo "Python 2.7 run completed (non-blocking)."
90
0 commit comments