Skip to content

Release 0.14.0

Release 0.14.0 #5

Workflow file for this run

name: Lint
on:
push:
branches: [main]
paths-ignore:
- 'docs/**'
- '**.md'
- '**.rst'
pull_request:
branches: [main]
paths-ignore:
- 'docs/**'
- '**.md'
- '**.rst'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
- name: Lint with ruff
run: |
pip install ruff
ruff check archon/ tests/
ruff format --check archon/ tests/