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 1d0d897 commit e333bdaCopy full SHA for e333bda
1 file changed
.github/workflows/maven.yml
@@ -12,14 +12,25 @@ on:
12
13
jobs:
14
build:
15
-
16
runs-on: ubuntu-latest
+ strategy:
17
+ matrix:
18
+ jdk-version: [11]
19
+ mongodb-version: [3.6]
20
21
steps:
22
- uses: actions/checkout@v2
- - name: Set up JDK 11
23
+
24
+ - name: Start MongoDB
25
+ uses: supercharge/mongodb-github-action@1.4.0
26
+ with:
27
+ mongodb-version: ${{ matrix.mongodb-version }}
28
+ mongodb-port: 53579
29
30
+ - name: Set up JDK ${{ matrix.jdk-version }}
31
uses: actions/setup-java@v1
32
with:
- java-version: 11
33
+ java-version: ${{ matrix.jdk-version }}
34
35
- name: Build with Maven
- run: mvn -B package --file pom.xml -Dmaven.test.skip=true
36
+ run: mvn -B package --file pom.xml
0 commit comments