From 007c87e57e6bc51b3d9e5086a8ab0ffa7341dc07 Mon Sep 17 00:00:00 2001 From: Brandon Rozek Date: Thu, 30 Mar 2023 15:51:01 -0400 Subject: [PATCH] GitHub Compile Action --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..5d47925 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ + +name: Build Spectra + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + + - name: Build With Maven + run: mvn package + +