From 6ca0e7b5eeafe946e7dc90178678b4b017a67cf5 Mon Sep 17 00:00:00 2001 From: Akrm Al-Hakimi Date: Tue, 19 May 2026 10:07:49 -0400 Subject: [PATCH] fix: only run CI on lua code --- .github/workflows/ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f5807b..7170ae4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,10 +2,21 @@ name: CI on: push: + paths: + - 'lua/**' + - 'plugin/**' + - 'tests/**' + - '.github/workflows/**' + - 'Makefile' branches: [master] pull_request: branches: [master] - + paths: + - 'lua/**' + - 'plugin/**' + - 'tests/**' + - '.github/workflows/**' + - 'Makefile' jobs: lint: runs-on: ubuntu-latest