From 94ad095c3f8b1e6b61794ff32c070f22f91cf297 Mon Sep 17 00:00:00 2001 From: per1234 Date: Tue, 18 May 2021 21:33:14 -0700 Subject: [PATCH] Adjust CI workflow for flat library layout This is one of the few official libraries that still uses the old "flat layout", but the CI workflow was configured for the modern "recursive layout. --- .github/workflows/compile-examples.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile-examples.yml b/.github/workflows/compile-examples.yml index de368d2..2105341 100644 --- a/.github/workflows/compile-examples.yml +++ b/.github/workflows/compile-examples.yml @@ -6,12 +6,18 @@ on: paths: - ".github/workflows/compile-examples.yml" - "examples/**" - - "src/**" + - "**.c" + - "**.cpp" + - "**.h" + - "*.S" pull_request: paths: - ".github/workflows/compile-examples.yml" - "examples/**" - - "src/**" + - "**.c" + - "**.cpp" + - "**.h" + - "*.S" schedule: # Run every Tuesday at 8 AM UTC to catch breakage caused by changes to external resources (libraries, platforms). - cron: "0 8 * * TUE"