Fix GitHub Actions coverage badge workflow git operations #25
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Coverage | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install .[dev] | |
| - name: Run tests with coverage | |
| run: | | |
| python -m pytest --cov=balance --cov-report=xml --cov-report=html --cov-report=term-missing | |
| - name: Upload coverage reports to artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-report | |
| path: htmlcov/ | |
| - name: Upload coverage XML | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-xml | |
| path: coverage.xml | |
| - name: Display coverage percentage | |
| run: | | |
| coverage report --precision=2 | |
| - name: Extract coverage percentage | |
| if: github.ref == 'refs/heads/main' | |
| run: | | |
| COVERAGE=$(coverage report --precision=2 | grep TOTAL | awk '{print $NF}' | sed 's/%//') | |
| echo "COVERAGE=$COVERAGE" >> $GITHUB_ENV | |
| echo "Coverage: $COVERAGE%" | |
| - name: Commit coverage badge | |
| if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
| run: | | |
| git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| # Always start fresh with orphan branch | |
| git checkout --orphan badges-temp | |
| git rm -rf . 2>/dev/null || true | |
| # Create badge directory and file | |
| mkdir -p .github/badges | |
| cat > README.md << 'EOF' | |
| # Coverage Badges | |
| This branch stores dynamically generated coverage badges. | |
| EOF | |
| python -c " | |
| import os, json | |
| coverage = float(os.environ['COVERAGE']) | |
| color = 'brightgreen' if coverage >= 80 else 'yellow' if coverage >= 60 else 'orange' | |
| badge = {'schemaVersion': 1, 'label': 'coverage', 'message': f'{coverage}%', 'color': color} | |
| with open('.github/badges/coverage.json', 'w') as f: | |
| json.dump(badge, f) | |
| " | |
| git add . | |
| git commit -m "Update coverage badge to ${COVERAGE}% [skip ci]" | |
| git push -f origin badges-temp:badges |