Skip to content

fix #121

fix #121 #70

Workflow file for this run

name: Python Test and Lint
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
test:
name: Python Test and Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.12'
- '3.13'
- '3.14'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install UV
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: uv sync
- name: Run ruff
run: uv run ruff check --output-format=github
continue-on-error: true
- name: Run pytest
run: uv run pytest tests/
- name: Run on self
run: |
uv run licensecheck -r pyproject.toml
uv run licensecheck --only-licenses mit apache --show-only-failing -g dev -r pyproject.toml
uv run licensecheck --only-licenses mit apache --show-only-failing -f csv -r pyproject.toml