From 54454480feb5b6f513e6e3cd62aead5ef9a69524 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 28 Mar 2025 11:38:44 +0100 Subject: [PATCH] ci : add src and include to paths filter This commit adds src and include to the paths filter in the examples workflow. The motivation for this is that to avoid missing changes in src/include that may effect the examples we should also run them when src/include change. --- .github/workflows/examples.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index dd8e3f51..48be0a42 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -2,6 +2,8 @@ name: Examples Tests on: push: paths: + - src/** + - include/** - examples/addon.node/** - whisper.h - examples/command.wasm/** @@ -10,6 +12,8 @@ on: - examples/whisper.wasm/** pull_request: paths: + - src/** + - include/** - examples/addon.node/** - whisper.h - examples/command.wasm/**