From 1c983c5cdda6c95856f44fc220b34920d1b6e906 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Wed, 24 Jun 2020 13:02:15 +0200 Subject: [PATCH] [CI] add linting --- .github/workflows/linter.yml | 13 +++++++++++++ 1 file changed, 13 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..9d826b7 --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,13 @@ +name: Build +on: [push, pull_request] +jobs: + build: + name: Lint Code Base + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Lint Code Base + uses: docker://github/super-linter:v2.2.0 + env: + VALIDATE_ALL_CODEBASE: false