Skip to content
code

GitHub Action

Pyflakes Syntax Checker

v1.0.1 Latest version

Pyflakes Syntax Checker

code

Pyflakes Syntax Checker

Check for Python syntax errors using Pyflakes

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Pyflakes Syntax Checker

uses: lgeiger/pyflakes-action@v1.0.1

Learn more about this action in lgeiger/pyflakes-action

Choose a version

Pyflakes GitHub Action

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

Example Workflow

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

action "Lint" {
  uses = "lgeiger/pyflakes-action@master"
}