From 609be4623cf368106f71b57094bdc37355e36360 Mon Sep 17 00:00:00 2001 From: iWas-Coder Date: Wed, 8 May 2024 16:20:31 +0200 Subject: [PATCH] fix: make workflow trigger when test code has changed --- .github/workflows/build-linux.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-linux.yaml b/.github/workflows/build-linux.yaml index dbb8f91..542f2b5 100644 --- a/.github/workflows/build-linux.yaml +++ b/.github/workflows/build-linux.yaml @@ -6,6 +6,7 @@ on: paths: - 'include/**' - 'src/**' + - 'test/**' - 'vendor/**' - 'BSDmakefile' - 'GNUmakefile' @@ -16,6 +17,7 @@ on: paths: - 'include/**' - 'src/**' + - 'test/**' - 'vendor/**' - 'BSDmakefile' - 'GNUmakefile'