2024-11-03 19:31:20 -05:00
|
|
|
name: Lua CI
|
2024-08-15 11:20:03 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-11-25 13:24:09 +01:00
|
|
|
paths:
|
|
|
|
- "**/*.lua"
|
2024-08-15 11:20:03 +08:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-11-25 13:24:09 +01:00
|
|
|
paths:
|
|
|
|
- "**/*.lua"
|
2024-08-15 11:20:03 +08:00
|
|
|
|
|
|
|
jobs:
|
2024-09-01 17:04:33 +08:00
|
|
|
stylua:
|
|
|
|
name: Check Lua style
|
2024-08-15 11:20:03 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-11-03 19:31:20 -05:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
|
2024-11-17 00:39:03 +08:00
|
|
|
- name: Install stylua
|
|
|
|
uses: baptiste0928/cargo-install@v3
|
2024-08-15 11:20:03 +08:00
|
|
|
with:
|
2024-11-17 00:39:03 +08:00
|
|
|
crate: stylua
|
|
|
|
features: lua54
|
2024-11-18 02:55:44 +08:00
|
|
|
- run: stylua --version
|
2024-11-17 00:39:03 +08:00
|
|
|
- run: stylua --check ./lua/ ./plugin/
|
2024-09-01 17:04:33 +08:00
|
|
|
luacheck:
|
|
|
|
name: Lint Lua
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-11-03 19:31:20 -05:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
|
2024-09-01 17:04:33 +08:00
|
|
|
- name: Luacheck linter
|
2024-11-03 19:31:20 -05:00
|
|
|
uses: lunarmodules/luacheck@cc089e3f65acdd1ef8716cc73a3eca24a6b845e4 # ratchet:lunarmodules/luacheck@v1
|
2024-09-01 17:04:33 +08:00
|
|
|
with:
|
|
|
|
args: ./lua/
|