We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3caca3b + b214aea commit f95658eCopy full SHA for f95658e
.github/workflows/maven.yml .github/workflows/ubuntu_java-11.yml.github/workflows/maven.yml renamed to .github/workflows/ubuntu_java-11.yml
@@ -1,4 +1,4 @@
1
-name: Java CI with Maven
+name: Build and test on latest Ubuntu and Java 11
2
3
on:
4
push:
.github/workflows/windows_java-11.yml
@@ -0,0 +1,27 @@
+name: Build and test on latest Windows and Java 11
+
+on:
+ push:
5
+ branches: master
6
+ pull_request:
7
8
+ workflow_dispatch:
9
+ branches: [ $default-branch ]
10
11
+jobs:
12
+ build:
13
14
+ runs-on: windows-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Set up JDK 11
19
+ uses: actions/setup-java@v2
20
+ with:
21
+ java-version: '11'
22
+ distribution: 'adopt'
23
+ - name: Grant execute permission for mvnw
24
+ run: chmod +x mvnw
25
+ - name: Build with Maven
26
+ run: ./mvnw -B package --file pom.xml
27
0 commit comments