summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yaml
blob: 87f93a00fead3d22190a13baf12904dfb05bad3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: lint
on:
  push:
    branches: '**'
  pull_request:
    branches:
      - 'master'
      - 'rolling'

jobs:
  lua-linter:
    name: "Linting with luacheck"
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
      
      - uses: leafo/gh-actions-lua@v8
      - uses: leafo/gh-actions-luarocks@v4

      - name: Use luacheck
        run: luarocks install luacheck
      
      - name: Run luacheck
        run: luacheck *.lua lua/
    
  shell-linter:
    name: "Linting with shellcheck"
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v2
      
      - name: Use shellcheck
        run: sudo apt-get install shellcheck
      
      - name: Run shellcheck
        run:  |
          pwd
          shellcheck $(find . -name "*.sh")