Run CI workflows only when relevant files are modified

This commit is contained in:
thunderbiscuit
2022-11-11 15:17:28 -05:00
parent 8bb8c00a6b
commit 64c496f815
2 changed files with 16 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
name: bdk-ffi CI
on: [push, pull_request]
on:
push:
paths:
- "bdk-ffi/**"
pull_request:
paths:
- "bdk-ffi/**"
jobs: