From f239ad810a98c89126a605119dff437b26b25f6d Mon Sep 17 00:00:00 2001 From: Robert Brodie Date: Thu, 4 Aug 2022 22:30:59 -0400 Subject: [PATCH] SP-40 Starting a build workflow --- .github/workflows/build.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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 00000000..c65fd24f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build + +on: + push: + branches-ignore: + - 'master' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 8 + uses: actions/setup-java@v3 + with: + java-version: '1.8' + distribution: 'adopt' + - name: Build with Maven + run: mvn compile + \ No newline at end of file