diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..f4656a9a2 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: PEP8 + +on: + push: + pull_request: + workflow_dispatch: + schedule: + - cron: '0 0 * * 0' # weekly + +env: + JOBS: 2 + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check Out + uses: actions/checkout@v2 + - name: PEP8 + run: | + pip install --upgrade pyproject-flake8 + flake8 new_scripts.py