Skip to content

feat: Add CI workflow for linting #1

feat: Add CI workflow for linting

feat: Add CI workflow for linting #1

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- track/**
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: python3 -m pip install tox
- run: tox -e lint