From 93ad2e0a41c5b80559d313e1e611d69af47cb5e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kiss=2C=20Gy=C3=B6rgy?= Date: Mon, 22 Jun 2020 15:42:27 +0200 Subject: [PATCH] Added lint workflow --- .github/workflows/linter.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..d12676c --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,18 @@ +name: Lint codebase + +on: + push: + branches-ignore: + - master + +jobs: + linter: + runs-on: ubuntu-latest + steps: + - name: Checkout codebase + uses: actions/checkout@v2 + + - name: Black Check + uses: jpetrucciani/black-check@19.10b0 + with: + path: code/backend