Skip to content

Update ruff

Update ruff #51

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install packages
run: pip install -r requirements-dev.txt
- name: Install pre-commit hooks
run: pre-commit install --install-hooks
- name: Run pre-commit
run: pre-commit run --all-files