Skip to content

Release 1.0.14

Release 1.0.14 #138

Workflow file for this run

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