/.github/workflows: only run ci checks against specific changes on explicit path

This commit is contained in:
Dustin Brown
2022-03-01 11:06:26 -08:00
parent 7aeae8709e
commit c8c5ab82dc
4 changed files with 17 additions and 2 deletions
+3
View File
@@ -3,6 +3,9 @@ name: Test Bats Unix
on:
pull_request:
branches: [ main ]
paths:
- 'go/**'
- 'integration-tests/**'
jobs:
test:
@@ -3,6 +3,9 @@ name: Check Compatibility
on:
pull_request:
branches: [ main ]
paths:
- 'go/**'
- 'integration-tests/**'
jobs:
test:
+5 -1
View File
@@ -1,6 +1,10 @@
name: Test MySQL Client integrations
on: [pull_request]
on:
pull_request:
paths:
- 'go/**'
- 'integration-tests/**'
jobs:
mysql_client_integrations_job:
@@ -1,6 +1,11 @@
name: Test Sysbench Runner Utility Works
on: [pull_request]
on:
pull_request:
branches: [ main ]
paths:
- 'go/**'
- 'integration-tests/**'
jobs:
mysql_client_integrations_job: