Skip to content

name change: boilr -> boilr-pv; tests & code coverage; readme update #1

name change: boilr -> boilr-pv; tests & code coverage; readme update

name change: boilr -> boilr-pv; tests & code coverage; readme update #1

Workflow file for this run

name: Run tests and upload coverage
on:
workflow_dispatch:
push #:

Check failure on line 6 in .github/workflows/coverage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/coverage.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
#tags:
# - '*'
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest --cov --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}