Skip to content

Update README.md

Update README.md #92

Workflow file for this run

name: Lint
on:
push:
branches:
- '**'
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install Python dependencies
run: pip install black
- name: Run linters
uses: wearerequired/lint-action@v2
with:
auto_fix: true
black: true
black_auto_fix: true
git_name: "Lint Action"
git_email: "[email protected]"