Skip to content

Merge pull request #20 from cremerlab/18-param-bounds-large-time-dime… #108

Merge pull request #20 from cremerlab/18-param-bounds-large-time-dime…

Merge pull request #20 from cremerlab/18-param-bounds-large-time-dime… #108

Workflow file for this run

name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10.x"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest-cov
pip install -e ./
- name: Test with pytest
run: |
pytest --cov --cov-report xml:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}