Skip to content

Coverage / Commitlint #4

Coverage / Commitlint

Coverage / Commitlint #4

Workflow file for this run

name: Check Coverage
on:
pull_request:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install Cally test dependencies
run: pip install .[test]
- name: Run Coverage
run: |
coverage run -m pytest
coverage xml
- name: Get Cover
uses: orgoro/[email protected]
with:
coverageFile: coverage.xml
token: ${{ secrets.GITHUB_TOKEN }}