Skip to content

fix coverage and doc-build action (#479) #306

fix coverage and doc-build action (#479)

fix coverage and doc-build action (#479) #306

Workflow file for this run

# Calculates new coverage for the base branch and uploads to codecov
name: Coverage
on:
push:
branches:
- master
jobs:
calc_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/mamba-install-dascore
with:
python-version: ${{ matrix.python-version }}
- name: run test suite
shell: bash -l {0}
run: |
pytest -s --cov dascore --cov-report=xml
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests # optional
name: master_tests # optional
token: ${{ secrets.CODECOV_TOKEN }} # required