From 9a03a2e47a8c502449f91f92c344e93d8f8da48c Mon Sep 17 00:00:00 2001 From: Auxilor Date: Mon, 15 Nov 2021 11:11:21 +0000 Subject: [PATCH] Added Java CI workflow --- .github/workflows/java-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/java-ci.yml diff --git a/.github/workflows/java-ci.yml b/.github/workflows/java-ci.yml new file mode 100644 index 00000000..2ad82b32 --- /dev/null +++ b/.github/workflows/java-ci.yml @@ -0,0 +1,19 @@ +name: Java CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 16 + uses: actions/setup-java@v2 + with: + java-version: '16' + distribution: 'adopt' + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b + - name: Build with Gradle + run: ./gradlew build \ No newline at end of file