Update Android and JVM CI workflows to run only on appropriate changes

This commit is contained in:
thunderbiscuit 2022-11-14 10:04:06 -05:00
parent e6708d4c5b
commit 738ed656fc
No known key found for this signature in database
GPG Key ID: 88253696EB836462
2 changed files with 18 additions and 2 deletions

View File

@ -1,5 +1,13 @@
name: Test Android
on: [push, pull_request]
on:
push:
paths:
- "bdk-ffi/**"
- "bdk-android/**"
pull_request:
paths:
- "bdk-ffi/**"
- "bdk-android/**"
env:
ANDROID_NDK_ROOT: /usr/local/lib/android/sdk/ndk/21.4.7075529

View File

@ -1,5 +1,13 @@
name: Test JVM
on: [push, pull_request]
on:
push:
paths:
- "bdk-ffi/**"
- "bdk-jvm/**"
pull_request:
paths:
- "bdk-ffi/**"
- "bdk-jvm/**"
jobs:
build: