Skip to content

Merge branch 'epos-msl' of github.com:UtrechtUniversity/irods-ruleset… #6205

Merge branch 'epos-msl' of github.com:UtrechtUniversity/irods-ruleset…

Merge branch 'epos-msl' of github.com:UtrechtUniversity/irods-ruleset… #6205

Workflow file for this run

name: "Python lint"
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8==7.1.1 flake8-import-order==0.18.2 darglint==1.8.1 codespell
python -m pip install mypy types-requests types-python-dateutil types-redis
- name: Lint with flake8
run: |
flake8 --statistics
- name: Check static typing
run: |
mypy . --explicit-package-bases
- name: Check code for common misspellings
run: |
codespell -q 3 --skip="*.r,*.xsd,*.json" || true
- name: Check McCabe complexity
run: |
flake8 --max-complexity 10 || true