Skip to content

feat: Add a code coverage badge #121

feat: Add a code coverage badge

feat: Add a code coverage badge #121

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Build
on:
push:
branches: "**"
pull_request:
branches: "**"
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . .'[test]' .'[lint]'
- name: Lint with pylint
run: |
pylint nada_dsl/
- name: Test with pytest
run: |
pytest
- name: Coverage Badge
uses: tj-actions/coverage-badge-py@v2
if: ${{ github.event_name == 'push' }}
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v16
if: ${{ github.event_name == 'push' }}
id: verify-changed-files
with:
files: coverage.svg
- name: Commit files
if: steps.verify-changed-files.outputs.files_changed == 'true' && 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]"
git add coverage.svg
git commit -m "Updated coverage.svg"
- name: Push changes
if: steps.verify-changed-files.outputs.files_changed == 'true' && github.event_name == 'push'
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.head_ref }}
force: true