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.
2 parents 8576b83 + 8d4a1ca commit ffa4c29Copy full SHA for ffa4c29
.github/workflows/build.yml
@@ -98,6 +98,29 @@ jobs:
98
- name: Run tests with mariadb
99
run: mvn test -pl core -am -Dspring.profiles.active=mariadb
100
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
+
124
java-doc:
125
runs-on: ubuntu-latest
126
needs: [build]
0 commit comments