Merge pull request #2100 from freifunk-gluon/lint-action

actions: add linter actions for lua and shell script
This commit is contained in:
David Bauer 2020-08-16 15:08:32 +02:00 committed by GitHub
commit 04b87dc1ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -7,6 +7,10 @@ insert_final_newline = true
indent_style = tab
charset = utf-8
[*.yml]
indent_style = space
indent_size = 2
[*.py]
indent_style = space
indent_size = 4

29
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Lint
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
lua:
name: Lua
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: sudo apt install lua-check
- name: Install example site
run: ln -s ./docs/site-example ./site
- name: Lint Lua code
run: make lint-lua
sh:
name: Shell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: sudo apt install shellcheck
- name: Install example site
run: ln -s ./docs/site-example ./site
- name: Lint shell code
run: make lint-sh