ci(build): make the build pipeline only run on code changes

Signed-off-by: k4yt3x <i@k4yt3x.com>
This commit is contained in:
k4yt3x 2024-11-07 00:00:00 +00:00
parent 64697a9385
commit 1b81f7d1e2
No known key found for this signature in database

View File

@ -1,10 +1,17 @@
name: Build
on:
push:
branches:
- master
- dev
pull_request: {}
paths:
- "include/**"
- "src/**"
- "third_party/**"
- "CMakeLists.txt"
pull_request:
paths:
- "include/**"
- "src/**"
- "third_party/**"
- "CMakeLists.txt"
workflow_dispatch: {}
jobs: