Skip to content

Improve performances #25

Improve performances

Improve performances #25

Workflow file for this run

name: Lint
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install polarctic
run: |
pip install .[dev]
- name: Lint with ruff
run: |
ruff check polarctic tests
- name: Check formatting with ruff
run: |
ruff format --check polarctic tests