Skip to content

Add multiple layer extract example #3

Add multiple layer extract example

Add multiple layer extract example #3

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip" # caching pip dependencies
- run: pip install -e '.[dev]'
- name: Ruff format
uses: chartboost/ruff-action@v1
with:
args: format --check
- name: Ruff lint
uses: chartboost/ruff-action@v1
- name: Mypy
run: |
mypy src/