From 5f77c94f588bf5ed419bea9bfa5ea6f71a20f341 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Fri, 19 Jan 2024 01:18:08 -0800 Subject: [PATCH] Added GitHub CI workflow --- .github/workflows/bld.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/bld.yml diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml new file mode 100644 index 0000000..892c89e --- /dev/null +++ b/.github/workflows/bld.yml @@ -0,0 +1,26 @@ +name: bld-ci + +on: [push, pull_request, workflow_dispatch] + +jobs: + build-gradle-project: + runs-on: ubuntu-latest + + strategy: + matrix: + java-version: [ 17, 20 ] + + steps: + - name: Checkout source repository + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Set up JDK ${{ matrix.java-version }} + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: ${{ matrix.java-version }} + + - name: Run tests + run: ./bld download compile test \ No newline at end of file