Skip to content

Commit

Permalink
ci: lints
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAShelf committed Dec 31, 2023
1 parent dad9dc8 commit 0503fd4
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Run tests

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
luacheck:
name: Luacheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare
run: |
sudo apt-get update
sudo add-apt-repository universe
sudo apt install luarocks -y
sudo luarocks install luacheck
- name: Run Luacheck
run: luacheck lua tests

typecheck:
name: typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: stevearc/nvim-typecheck-action@v1
with:
path: lua

stylua:
name: StyLua
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Stylua
uses: JohnnyMorganz/stylua-action@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: v0.18.2
args: --check lua tests
7 changes: 7 additions & 0 deletions .luacheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- vim: ft=lua tw=80

-- Rerun tests only if their modification time changed.
cache = true

-- Global objects defined by the C code
read_globals = { "vim" }
4 changes: 4 additions & 0 deletions stylua.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
column_width = 80
indent_type = "Spaces"
indent_width = 2
quote_style = "AutoPreferDouble"

0 comments on commit 0503fd4

Please sign in to comment.