From 5985cc2b21df88142687fc9baad50c20aefbd569 Mon Sep 17 00:00:00 2001 From: Stijn Bannink Date: Fri, 29 Jul 2022 20:55:45 +0200 Subject: [PATCH] Create maven.yml --- .github/workflows/maven.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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 0000000..c9caadf --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,26 @@ +name: Java CI + +on: [push] + +jobs: + build: + name: 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 -B package --file pom.xml + + - run: mkdir -p target + + - uses: actions/upload-artifact@master + with: + name: MapReflectionAPI + path: target