/flake8-action

A GitHub action that checks for Python syntax errors using flakes8

Primary LanguageDockerfileMIT LicenseMIT

Flake8 GitHub Action

A GitHub action that checks for Python syntax errors using Flake8.

Example Workflow

workflow "Example Workflow" {
  on = "push"
  resolves = ["Lint"]
}

action "Lint" {
  uses = "ahuge/flake8-action@master"
}