Skip to content

20x fast convex_hull_image for 2D #3

20x fast convex_hull_image for 2D

20x fast convex_hull_image for 2D #3

Workflow file for this run

name: Lint
on: [ pull_request ]
env:
MODULE_NAME: imops
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Check python code style
run: |
pip install -r requirements-linters.txt
flake8 .
isort --check .
black --check .
- name: Check Cython code style
run: |
pip install cython-lint
cython-lint imops/src