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 86954f4 commit d099ae4Copy full SHA for d099ae4
.github/workflows/ci.yml
@@ -18,10 +18,17 @@ jobs:
18
path: ~/.m2/repository
19
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
20
restore-keys: |
21
- ${{ runner.os }}-maven-
+ ${{ runner.os }}-maven-
22
- name: Set up JDK
23
uses: actions/setup-java@v1
24
with:
25
java-version: ${{ matrix.java }}
26
+ - name: Set up Minikube
27
+ uses: manusa/actions-setup-minikube@v2.0.1
28
+ with:
29
+ minikube version: 'v1.13.1'
30
+ kubernetes version: 'v1.19.2'
31
+ driver: 'docker'
32
- name: Build with Maven
- run: mvn -B package -P no-integration-tests --file pom.xml
33
+ run: mvn -B package --file pom.xml
34
+
0 commit comments