This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/master by this push:
new 2f76b5d Add maven.yml
2f76b5d is described below
commit 2f76b5de0a31ac285205c47a66fe4e5ab0bbecc2
Author: Martin Grigorov <[email protected]>
AuthorDate: Sun Aug 18 21:41:16 2019 +0300
Add maven.yml
Initial version of GitHub Maven Action
---
.github/workflows/maven.yml | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000..f01bff3
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,20 @@
+name: Java CI
+
+on:
+ push:
+ branches:
+ - master
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Set up JDK 11
+ uses: actions/setup-java@v1
+ with:
+ java-version: 11
+ - name: Build with Maven
+ run: mvn package --file pom.xml