aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPaul Spooren <mail@aparcar.org>2020-09-10 08:53:22 -1000
committerPaul Spooren <mail@aparcar.org>2020-09-14 11:05:33 -1000
commit2b5de22202dafe849bfbce3adf1488d542ba8b24 (patch)
treea2e752e8202eedce0d80fd54e09ffc32b8888536 /.github
parent69c8cb41292536d68f069a8d97eacb09e2014f2b (diff)
CI: add super-linter for pull requests
This commit adds a linter which checks most common filetypes, including Shell and Lua. Ideally this improves the quality of especially `init` scripts written in Shell. Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linter.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml
new file mode 100644
index 000000000..1b1ed931a
--- /dev/null
+++ b/.github/workflows/linter.yml
@@ -0,0 +1,22 @@
+name: Lint Pull Request
+
+# Documentation:
+# https://github.com/github/super-linter
+
+on:
+ pull_request:
+ branches: [master]
+jobs:
+ build:
+ name: Lint Code Base
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Code
+ uses: actions/checkout@v2
+
+ - name: Lint Code Base
+ uses: github/super-linter@v3
+ env:
+ VALIDATE_ALL_CODEBASE: false
+ DEFAULT_BRANCH: master
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}