aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/luacheck.yml
blob: 179426379b04b2dc3f60eb86728670a3a58a67be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Luacheck

on:
  push:
    branches: main
  pull_request:
    branches: '*'

jobs:

  luacheck:
    runs-on: ubuntu-22.04
    steps:
      - name: Checkout
        uses: actions/checkout@master
      - name: Luacheck
        uses: lunarmodules/luacheck@v1