Run CI workflows only when relevant files are modified
This commit is contained in:
parent
8bb8c00a6b
commit
64c496f815
10
.github/workflows/build-python-wheels.yaml
vendored
10
.github/workflows/build-python-wheels.yaml
vendored
@ -1,5 +1,13 @@
|
||||
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
|
||||
# makes it very hard to use GitHub's javascript actions (checkout, upload-artifact, etc).
|
||||
|
8
.github/workflows/cont_integration.yml
vendored
8
.github/workflows/cont_integration.yml
vendored
@ -1,5 +1,11 @@
|
||||
name: bdk-ffi CI
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "bdk-ffi/**"
|
||||
pull_request:
|
||||
paths:
|
||||
- "bdk-ffi/**"
|
||||
|
||||
jobs:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user