From fc6b49a7a20e6e193db0611a8c75aa0d3e56f38f Mon Sep 17 00:00:00 2001 From: Graham Date: Sat, 2 Sep 2023 18:23:20 +0100 Subject: [PATCH] Add initial GitHub Actions workflow Signed-off-by: Graham --- .github/workflows/build.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..53d53dcc --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,15 @@ +--- +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 11 + - uses: gradle/wrapper-validation-action@v1 + - uses: gradle/gradle-build-action@v2 + with: + arguments: build