Skip to content

Merge branch 'main' of https://github.com/MePhew-GonteQ-Industries/zo… #150

Merge branch 'main' of https://github.com/MePhew-GonteQ-Industries/zo…

Merge branch 'main' of https://github.com/MePhew-GonteQ-Industries/zo… #150

Workflow file for this run

name: Lint
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
permissions:
checks: write
contents: write
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python v. 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install Python dependencies
run: pip install black flake8
- name: Lint
uses: wearerequired/lint-action@v1.11.1
with:
auto_fix: true
black: true