Skip to content

remove type checking from dist_fn #14

remove type checking from dist_fn

remove type checking from dist_fn #14

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
resolution: ["highest", "lowest-direct"]
steps:
- uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: pytest
run: uv run --extra dev --resolution ${{ matrix.resolution }} --python ${{ matrix.python-version}} pytest --cov=src tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false