Add border detecting and cropping helper (#41) #48
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: Style checks and test | |
on: [push] | |
jobs: | |
run_tests: | |
name: Style checks and test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies - Python ${{ matrix.python-version }} | |
run: PYTHON_VERSION=${{ matrix.python-version }} make deps | |
- name: Lint | |
run: make check | |
- name: Test | |
run: make test |