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.
This commit is contained in:
per1234 2021-05-18 21:33:14 -07:00 committed by GitHub
parent d935c237ab
commit 94ad095c3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"