Skip to content

Feature/test pandas spc x calc #13

Feature/test pandas spc x calc

Feature/test pandas spc x calc #13

Workflow file for this run

name: code coverage
on: [pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest-cov pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests and collect coverage
run: pytest --cov nhspy_plotthedots
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3