Skip to content

Merge pull request #14 from NOWUM/dev #43

Merge pull request #14 from NOWUM/dev

Merge pull request #14 from NOWUM/dev #43

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
- name: Install dependencies
run: |
python -m pip install .[dev]
- name: Lint with ruff
run: |
ruff check
ruff format