Skip to content

Remove the redundant broken gh-pages deploy job #190

Remove the redundant broken gh-pages deploy job

Remove the redundant broken gh-pages deploy job #190

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:
# Pinned rather than "3.x" so CI cannot drift onto an interpreter the
# lockfile has never been resolved against. Pipfile.lock is generated
# on this version; bump both together.
python-version: "3.13"
- 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