Skip to content

chore: update contact information in README.md #58

chore: update contact information in README.md

chore: update contact information in README.md #58

Workflow file for this run

name: Lint
# Triggered when code is pushed to any branch in a repository
on:
push: {}
workflow_dispatch: {}
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.8
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v1
with:
black: true
flake8: true
flake8_args: '--ignore=E203,E266,E501,F401,W503'