diff --git a/.github/workflows/pycodestyle.yml b/.github/workflows/pycodestyle.yml new file mode 100644 index 000000000..a5ad176eb --- /dev/null +++ b/.github/workflows/pycodestyle.yml @@ -0,0 +1,13 @@ +name: Python Style Checker + +on: [push] + +jobs: + pycodestyle: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Python Style Checker + uses: andymckay/pycodestyle-action@0.1.3