Release 1.0.14 #138
This file contains hidden or 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: Mapillary Python SDK - PyTest Workflow | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: Install dependencies | |
| run: | | |
| make setup-dev | |
| - name: Locally install branch's mapillary | |
| run: | | |
| make build && make local-install | |
| - name: Formatting with black | |
| run: | | |
| make format | |
| - name: Lint with flake8 | |
| run: | | |
| make lint | |
| - name: Test with pytest | |
| run: | | |
| make test |