Fix/tw priority bug #28
Workflow file for this run
This file contains 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: Check Coverage | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Python Poetry Action | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: "1.6.1" | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "poetry" | |
- name: Install prerequisites | |
run: | | |
poetry install --all-extras | |
sudo ./scripts/install-taskwarrior.sh | |
task --version | |
- name: Coverage | |
run: | | |
poetry run coverage run -m pytest --doctest-modules | |
poetry run coverage report | |
# Using --service=github + secrets.GITHUB_TOKEN for builds originating from PRs to work | |
# Not sure if both are required | |
# https://github.com/TheKevJames/coveralls-python/issues/252 | |
- name: Coveralls | |
run: poetry run coveralls --service=github || poetry run coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |