Skip to content

Merge pull request #3 from ihmeuw-msca/bugfix/plots-and-erroring #15

Merge pull request #3 from ihmeuw-msca/bugfix/plots-and-erroring

Merge pull request #3 from ihmeuw-msca/bugfix/plots-and-erroring #15

Workflow file for this run

name: build
on:
push:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: python -m pip install .[test] --upgrade pip
- name: Test with pytest
run: pytest --cov=./ --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: ihmeuw-msca/pypkg