From 4ebbb7ae16a57b821c98bb947e38177cfaafc7c5 Mon Sep 17 00:00:00 2001 From: shadmansaleh <13149513+shadmansaleh@users.noreply.github.com> Date: Sat, 26 Mar 2022 09:43:56 +0000 Subject: [PATCH] chore: lint correct test directory --- .github/workflows/ci.yml | 3 +-- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) 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: