ljodal / python-actions

GitHub Actions for Python projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Actions for Python projects

This repository contains a few GitHub actions that could be useful for Python projects.

Pyflakes

Run Pyflakes and annotate the code with any errors found. Usage:

name: Pyflakes
uses: ljodal/python-actions/pyflakes@master
with:
  github-token: ${{ secrets.GITHUB_TOKEN }}
  max-errors: 0

Mypy

Run Mypy and annotate the code with any errors found. Usage:

name: Mypy
uses: ljodal/python-actions/mypy@master
with:
  github-token: ${{ secrets.GITHUB_TOKEN }}
  max-errors: 0

Black

Run Black and annotate the code with any errors found. Usage:

name: Black
uses: ljodal/python-actions/black@master
with:
  github-token: ${{ secrets.GITHUB_TOKEN }}

About

GitHub Actions for Python projects


Languages

Language:JavaScript 100.0%