Skip to content

Bump version

Bump version #114

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
jobs:
test:
runs-on: ubuntu-latest
services:
clickhouse:
image: clickhouse/clickhouse-server:latest
ports:
- 9000:9000
options: >-
--health-cmd "wget --no-verbose --tries=1 --spider http://localhost:8123/ping || exit 1"
--health-interval 10s
--health-timeout 5s
--health-retries 5
strategy:
fail-fast: false
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
env:
UV_PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras
- name: Check formatting with Ruff
run: ruff check
- name: Run tests
run: pytest tests/ -v --cov=houseplant