From 8cc5b334f815b035a3a8844e7feccca021c9921a Mon Sep 17 00:00:00 2001 From: August Shi Date: Fri, 24 May 2024 16:12:06 +0000 Subject: [PATCH] Including some basic Actions build that can at least check that things compile --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..a0ac794 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ + +name: auto-check-build + +on: [push, pull_request] + +jobs: + basicBuild: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8.0.292+10' + distribution: 'adopt' + + - name: Installs packages + run: mvn install -B