Skip to content

Bump version to 0.8.0 #184

Bump version to 0.8.0

Bump version to 0.8.0 #184

Workflow file for this run

name: Linting and testing
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run ruff
run: uvx ruff check --output-format=github .
- name: Run ty
run: uvx ty check
- name: Test with pytest
run: uv run pytest -v -p no:cacheprovider --exitfirst
env:
API_KEY: ${{ secrets.API_KEY }}