Skip to content

BID

BID #673

Workflow file for this run

name: lint
on:
push:
branches:
- develop
- main
pull_request:
jobs:
run:
continue-on-error: True
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.12]
timeout-minutes: 25
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install tox
# - name: Pylint
# run: tox -e pylint
- name: Code style check
run: |
tox -e black-check
tox -e isort-check
tox -e flake8
# tox -e vulture
# tox -e darglint
# - name: Check copyright
# run: tox -e check-copyright