Skip to content

Commit a37aede

Browse files
committed
ci: also run on changes against deps
Signed-off-by: Arthur Schiwon <[email protected]>
1 parent ddd3a6c commit a37aede

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

.github/workflows/phpunit-mysql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
pull_request:
1010
paths:
1111
- '.github/workflows/**'
12+
- '3rdparty/**'
1213
- 'appinfo/**'
1314
- 'lib/**'
1415
- 'templates/**'

.github/workflows/phpunit-oci.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
pull_request:
1010
paths:
1111
- '.github/workflows/**'
12+
- '3rdparty/**'
1213
- 'appinfo/**'
1314
- 'lib/**'
1415
- 'templates/**'
@@ -39,7 +40,7 @@ env:
3940

4041
jobs:
4142
phpunit-oci:
42-
runs-on: ubuntu-latest
43+
runs-on: ubuntu-22.04
4344

4445
strategy:
4546
matrix:
@@ -48,10 +49,24 @@ jobs:
4849

4950
services:
5051
oracle:
51-
image: deepdiver/docker-oracle-xe-11g # 'wnameless/oracle-xe-11g-r2'
52+
image: ghcr.io/gvenzl/oracle-xe:11
53+
54+
# Provide passwords and other environment variables to container
55+
env:
56+
ORACLE_RANDOM_PASSWORD: true
57+
APP_USER: autotest
58+
APP_USER_PASSWORD: owncloud
59+
5260
ports:
5361
- 1521:1521/tcp
5462

63+
# Provide healthcheck script options for startup
64+
options: >-
65+
--health-cmd healthcheck.sh
66+
--health-interval 10s
67+
--health-timeout 5s
68+
--health-retries 10
69+
5570
steps:
5671
- name: Set app env
5772
run: |

.github/workflows/phpunit-pgsql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
pull_request:
1010
paths:
1111
- '.github/workflows/**'
12+
- '3rdparty/**'
1213
- 'appinfo/**'
1314
- 'lib/**'
1415
- 'templates/**'

.github/workflows/phpunit-sqlite.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
pull_request:
1010
paths:
1111
- '.github/workflows/**'
12+
- '3rdparty/**'
1213
- 'appinfo/**'
1314
- 'lib/**'
1415
- 'templates/**'

0 commit comments

Comments
 (0)