Skip to content

relax python constraint #33

relax python constraint

relax python constraint #33

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Run yapf, isort, and flake8
run: |
poetry run tox -e yapf,isort,flake8