Skip to content

Commit ffa4c29

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/mysql' into mysql
2 parents 8576b83 + 8d4a1ca commit ffa4c29

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,29 @@ jobs:
9898
- name: Run tests with mariadb
9999
run: mvn test -pl core -am -Dspring.profiles.active=mariadb
100100

101+
test-mysql:
102+
runs-on: ubuntu-latest
103+
needs: build
104+
services:
105+
postgres:
106+
image: mysql:latest
107+
env:
108+
MYSQL_USER: sa
109+
MYSQL_ROOT_PASSWORD: veryStrong123
110+
MYSQL_PASSWORD: veryStrong123
111+
ports:
112+
- 3306:3306
113+
steps:
114+
- uses: actions/checkout@v4
115+
- name: Set up JDK 21
116+
uses: actions/setup-java@v4
117+
with:
118+
java-version: '21'
119+
distribution: 'temurin'
120+
cache: maven
121+
- name: Run tests with mysql
122+
run: mvn test -pl core -am -Dspring.profiles.active=mysql
123+
101124
java-doc:
102125
runs-on: ubuntu-latest
103126
needs: [build]

0 commit comments

Comments
 (0)