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 3cce84b + b10c965 commit c5d7d3aCopy full SHA for c5d7d3a
.github/workflows/maven.yml
@@ -0,0 +1,22 @@
1
+# This workflow will build a Java project with Maven
2
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3
+
4
+name: Kubernetes Java Client - Maven Test
5
6
+on:
7
+ push:
8
+ branches: [ master ]
9
+ pull_request:
10
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Set up JDK 1.8
18
+ uses: actions/setup-java@v1
19
+ with:
20
+ java-version: 1.8
21
+ - name: Build with Maven
22
+ run: mvn -q test -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
0 commit comments