We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3b9397 commit 396f2ccCopy full SHA for 396f2cc
.github/workflows/ci.yml
@@ -77,16 +77,14 @@ jobs:
77
- uses: actions/setup-python@v5
78
with:
79
python-version: "3.12"
80
- - uses: hynek/setup-cached-uv@v2
81
- - run: uv pip install --system --upgrade coverage[toml]
82
- uses: actions/download-artifact@v4
83
84
pattern: coverage-data-*
85
merge-multiple: true
86
87
- - name: Combine coverage & fail if it's <100%.
+ - name: Combine coverage & fail under 100%
88
run: |
89
- uv tool install 'coverage[toml]'
+ python -Im pip install --upgrade "coverage[toml]"
90
91
coverage combine
92
coverage html --skip-covered --skip-empty
0 commit comments