From 098de1e6301f6967edb210024755847c744f2e9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Thu, 28 Sep 2023 21:57:22 +0200 Subject: [PATCH] fix(Luacheck) --- .github/workflows/CI.yml | 14 -------------- .github/workflows/luacheck.yml | 10 ++++++++++ 2 files changed, 10 insertions(+), 14 deletions(-) delete mode 100644 .github/workflows/CI.yml create mode 100644 .github/workflows/luacheck.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index 2bec080..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: CI - -on: - push: - pull_request: - -jobs: - check: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: nebularg/actions-luacheck@v1 - with: - files: 'lua' diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml new file mode 100644 index 0000000..571609c --- /dev/null +++ b/.github/workflows/luacheck.yml @@ -0,0 +1,10 @@ +name: Luacheck +on: [push, pull_request] +jobs: + sile: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Luacheck linter + uses: lunarmodules/luacheck@v1