Skip to content

sketch-map

sketch-map #1828

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: "3.14"
- name: install tests dependencies
run: python -m pip install tox
- name: Lint the code
run: tox -e lint