From 9e3ae569715f0330a0415cd5b9838a3f3a43def0 Mon Sep 17 00:00:00 2001 From: javahongxi Date: Wed, 14 Aug 2019 23:40:57 +0800 Subject: [PATCH] Update maven.yml --- .github/workflows/maven.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 00000000..f665e671 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + version: 1.8 + - name: Build with Maven + run: mvn clean package -Dmaven.test.skip --file pom.xml -- GitLab