Skip to content

Fix keyword in test #68

Fix keyword in test

Fix keyword in test #68

Workflow file for this run

name: Lint
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
pull_request:
branches: [main]
paths-ignore:
- 'docs/**'
jobs:
lint:
name: Lint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Lint with ruff
run: |
uv tool install ruff
ruff check python/ tests/
ruff format --check python/ tests/