Skip to content

Add percentilefp and archetypesfp and make updates to pyproject to al… #9

Add percentilefp and archetypesfp and make updates to pyproject to al…

Add percentilefp and archetypesfp and make updates to pyproject to al… #9

Workflow file for this run

name: Run tests and upload coverage
on:
push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest --cov=src --cov-branch --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}