Skip to content

initial MVP

initial MVP #1

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
cache-dependency-path: pyproject.toml
- name: lint
run: make lint INSTALL_EXTRA=lint