Skip to content

Support cylindrical and spherical !noise #449

Support cylindrical and spherical !noise

Support cylindrical and spherical !noise #449

Workflow file for this run

name: CI lint
on:
push:
branches: [main]
paths:
- .github/workflows/ci-lint.yml
- pyproject.toml
- .flake8
- src/**/*.py
- src/**/*.pyx
- src/**/*.pxd
- tests/**/*.py
- scripts/**/*.py
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install linter dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 cython-lint
- name: Lint Python code with flake8
run:
flake8 src tests scripts
--count --show-source --statistics
- name: Lint Cython code with cython-lint
run: |
cython-lint src