20x fast convex_hull_image for 2D #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |