Skip to content

Python Lint Workflow #1

Python Lint Workflow

Python Lint Workflow #1

Workflow file for this run

name: Python Lint Workflow
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '24 8 * * 4'
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
linter: [flake8, pylint, ruff, mypy, pytype, pyright, fixit]
steps:
- name: Run Python Lint
uses: aegilops/python-lint-code-scanning-action@main
with:
linter: ${{ matrix.linter }}