From 169068bb2646a28185fd8230f071eace02510ddf Mon Sep 17 00:00:00 2001 From: George BIsbas Date: Thu, 30 Jul 2020 12:04:15 +0300 Subject: [PATCH] Enable flake8 --- .github/workflows/flake8.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/flake8.yml diff --git a/.github/workflows/flake8.yml b/.github/workflows/flake8.yml new file mode 100644 index 00000000..e8efe3a7 --- /dev/null +++ b/.github/workflows/flake8.yml @@ -0,0 +1,33 @@ +name: flake8 + +on: + # Trigger the workflow on push or pull request, + # but only for the master branch + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + flake8: + runs-on: ubuntu-latest + + steps: + - name: Checkout devito_book + uses: actions/checkout@v1 + + - name: Set up Python 3.7 + uses: actions/setup-python@v1 + with: + python-version: 3.7 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 + - name: Lint with flake8 + run: | + flake8 --builtins=ArgumentError . +