Skip to content

Merge pull request #2 from datalad/ruff #5

Merge pull request #2 from datalad/ruff

Merge pull request #2 from datalad/ruff #5

Workflow file for this run

name: Static code check
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
# run on a "fresh" python
python-version: 3.12
- name: Checkout
uses: actions/checkout@v4
- name: Install hatch
run: python -m pip install hatch
- name: Check code
run: hatch fmt --check