Skip to content

feat: create linting and testing workflow #5

feat: create linting and testing workflow

feat: create linting and testing workflow #5

Workflow file for this run

name: test-lint
on: [push]
jobs:
uv-pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.2"
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests/test_extension.py
- name: Run Ruff linter
run: uv run ruff check ./