Skip to content

feat: add "duration" option (#22) #36

feat: add "duration" option (#22)

feat: add "duration" option (#22) #36

Workflow file for this run

name: Black, Pylint, MyPy
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Checks
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install --upgrade pip
- run: pip install black pylint mypy
- run: black --exclude="custom_components/berlin_transport/const.py" --diff .
- run: pylint $(git ls-files '*.py')
- run: mypy --install-types --non-interactive $(git ls-files '*.py')