Skip to content

a few tiny changes from 38c3 #1156

a few tiny changes from 38c3

a few tiny changes from 38c3 #1156

Workflow file for this run

name: Lint
on: push
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.11.10
- name: Install Python dependencies
run: pip install black flake8
- name: Run linters
uses: wearerequired/lint-action@v1
with:
github_token: ${{ secrets.github_token }}
# Enable linters
black: false
flake8: true
flake8_args: --max-line-length 120 --ignore=E402,W503,E203,E303,E722,E741,E731,W504