Skip to content

Add Custom Logger and types for better data handling, type checking a… #14

Add Custom Logger and types for better data handling, type checking a…

Add Custom Logger and types for better data handling, type checking a… #14

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v1
with:
black: true
flake8: false
flake8_args: --ignore=E501
auto_fix: true
continue_on_error: false