Skip to content

[dados] br_stf_corte_aberta #2480

[dados] br_stf_corte_aberta

[dados] br_stf_corte_aberta #2480

Workflow file for this run

name: Lint Python
on:
pull_request:
jobs:
docker_lint:
name: Lint Python
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9.x"
- name: Set up poetry and upgrade pip
run: |
pip install -U pip poetry
pip install isort
pip install black
pip install autoflake
pip install flake8
- name: Install this package
run: poetry install
- name: Lint source code
run: poetry run lint