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
No known key found for this signature in database
GPG Key ID: 88253696EB836462
2 changed files with 16 additions and 2 deletions

View File

@ -1,5 +1,13 @@
name: Build Python wheels name: Build Python wheels
on: [push, pull_request] on:
push:
paths:
- "bdk-ffi/**"
- "bdk-python/**"
pull_request:
paths:
- "bdk-ffi/**"
- "bdk-python/**"
# We use manylinux2014 because older CentOS versions used by 2010 and 1 have a very old glibc version, which # We use manylinux2014 because older CentOS versions used by 2010 and 1 have a very old glibc version, which
# makes it very hard to use GitHub's javascript actions (checkout, upload-artifact, etc). # makes it very hard to use GitHub's javascript actions (checkout, upload-artifact, etc).

View File

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