Skip to content

Merge branch 'main' into fix/lowess-better-error-message #289

Merge branch 'main' into fix/lowess-better-error-message

Merge branch 'main' into fix/lowess-better-error-message #289

Workflow file for this run

name: Linting
on:
push:
jobs:
linting-python:
name: Lint Python
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Dependencies
run: python -m pip install ruff==0.1.6 --no-cache-dir
- name: Run Ruff
run: make lint