Skip to content

feat: Add CI workflow for linting #1

feat: Add CI workflow for linting

feat: Add CI workflow for linting #1

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