The Wayback Machine - https://web.archive.org/web/20220604093715/https://github.com/ankitvgupta/pycodestyle-action
Skip to content

ankitvgupta/pycodestyle-action

master
Switch branches/tags
Code

Files

Permalink
Failed to load latest commit information.

pycodestyle-action

A Github Action that runs pycodestyle and leaves a comment on your pull request.

Example

Add the following to .github/workflows/myworkflow.yml.

Note that the PRECOMMAND_MESSAGE variable is optional. If you set it, it will print before the code errors. For example, this is helpful if you want to print a message to refer the user to any tools you have for managing style errors.

on: [pull_request]
name: Python Style Check
jobs:
  pycodestyle:
    name: pycodestyle
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: pycodestyle
      uses: ankitvgupta/pycodestyle-action@master
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        PRECOMMAND_MESSAGE: You have style errors. See them below.

Acknowledgements

About

A Github Action that runs pycodestyle and leaves a comment on your pull request with style errors.

Resources

License

Stars

Watchers

Forks