Skip to content

Use reusable lint workflow from gh-actions #89

Use reusable lint workflow from gh-actions

Use reusable lint workflow from gh-actions #89

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
uses: hellboxpy/gh-actions/.github/workflows/lint.yml@main
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest tests