Add CI workflow for testing builds.

This commit is contained in:
Kavin 2024-03-28 20:06:33 +00:00
parent f2b86d2dde
commit 8af02b0b70
No known key found for this signature in database
GPG key ID: 6E4598CA5C92C41F

25
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 21 ]
steps:
- uses: actions/checkout@v4
- name: set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: zulu
cache: "gradle"
- name: Run Build
run: ./gradlew shadowJar