-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1000 Bytes
/
lint.yml
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
39
40
41
name: lint
on: [push, pull_request]
# on:
# pull_request:
# branches:
# - main
jobs:
lint:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Setup
run: |
sudo apt-get update
sudo apt-get install luarocks
sudo luarocks install luacheck
- name: Lint
run: luacheck lua/ --globals vim
# - name: Checkout sources
# uses: actions/checkout@v2
# - name: Setup luacheck
# run: |
# sudo apt update &&
# sudo apt install -y lua5.1 luarocks &&
# sudo luarocks install luacheck
# - name: Run luacheck
# run: |
# luacheck lua/*
format:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest # NOTE: we recommend pinning to a specific version in case of formatting changes
# CLI arguments
args: --check .