diff options
author | Vitaly Takmazov | 2022-12-14 13:34:19 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2022-12-14 16:18:06 +0300 |
commit | 560d89cb0285435f0e7c640b3fb67ab1197df808 (patch) | |
tree | 2e410bae3b5a4808c3efd16cf2a4875a68212c83 /src/test/resources/application-postgres.yml | |
parent | 0c0ea8897e64461b1cfa9cd86a939b48f0bdd640 (diff) |
CI: matrix tests on profile strategy
Diffstat (limited to 'src/test/resources/application-postgres.yml')
-rw-r--r-- | src/test/resources/application-postgres.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/resources/application-postgres.yml b/src/test/resources/application-postgres.yml new file mode 100644 index 00000000..b75b1e50 --- /dev/null +++ b/src/test/resources/application-postgres.yml @@ -0,0 +1,12 @@ +spring: + datasource: + url: jdbc:postgresql://localhost:5432/juick?stringtype=unspecified + username: juick + password: secret + flyway: + baseline-on-migrate: true + sql: + init: + platform: postgresql + mode: always + |