Skip to content

Bump version to 1.1 #24

Bump version to 1.1

Bump version to 1.1 #24

Workflow file for this run

name: pytest
on: pull_request
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/0.3.0/install.sh | sh
- name: Set up Python
run: uv python install 3.9
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests --cov --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}