We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4eb9e2 commit 8d4a1caCopy full SHA for 8d4a1ca
.github/workflows/build.yml
@@ -97,6 +97,29 @@ jobs:
97
- name: Run tests with mariadb
98
run: mvn test -pl core -am -Dspring.profiles.active=maria
99
100
+ test-mysql:
101
+ runs-on: ubuntu-latest
102
+ needs: build
103
+ services:
104
+ postgres:
105
+ image: mysql:latest
106
+ env:
107
+ MYSQL_USER: sa
108
+ MYSQL_ROOT_PASSWORD: veryStrong123
109
+ MYSQL_PASSWORD: veryStrong123
110
+ ports:
111
+ - 3306:3306
112
+ steps:
113
+ - uses: actions/checkout@v4
114
+ - name: Set up JDK 21
115
+ uses: actions/setup-java@v4
116
+ with:
117
+ java-version: '21'
118
+ distribution: 'temurin'
119
+ cache: maven
120
+ - name: Run tests with mysql
121
+ run: mvn test -pl core -am -Dspring.profiles.active=mysql
122
+
123
java-doc:
124
runs-on: ubuntu-latest
125
needs: [build]
0 commit comments