From 5c998500033f233648850a5a2af0a713e90143a7 Mon Sep 17 00:00:00 2001 From: Soham Banerjee Date: Tue, 26 Oct 2021 23:06:36 +0530 Subject: [PATCH] linters added --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4cebcc7 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +on: [push, pull_request, workflow_dispatch] + +jobs: + python-lint: + runs-on: ubuntu-latest + name: CI workflow + steps: + - name: checkout source repo + uses: actions/checkout@v2 + + - name: linting + uses: alexanderdamiani/pylinter@v1.3.0 + with: + python-root: "." + flake8-flags: "" + fail-on-isort: true