aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/luacheck.yml
blob: 0ff424824ea9b706713bd5529296eb5a2a130bf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Lua Check

on:
  push:
    paths:
    - 'lua/**'

jobs:
  luacheck:
    runs-on: ubuntu-latest
    steps:

    - name: Checkout
      uses: actions/checkout@v2

    - name: Dependency
      run: sudo apt install lua-check

    - name: Check
      run: make luacheck