diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25d4c16..effacdc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,5 +61,4 @@ jobs: sudo luarocks install luacheck - name: Run luacheck run: | - luacheck lua/ - luacheck examples/ + make lint diff --git a/Makefile b/Makefile index c2a8821..131d022 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ .DEFAULT_GOAL = check lint: - @luacheck lua/lualine - @luacheck lua/tests + @luacheck lua/lualine/ + @luacheck tests/ @luacheck examples/ format: