From 247b3292809846ff419ada646de79861618eef01 Mon Sep 17 00:00:00 2001 From: Dawson Date: Sat, 1 Feb 2025 10:46:35 -0500 Subject: [PATCH] Added test workflow --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..7515e19 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,19 @@ +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17.0.2 + uses: actions/setup-java@v4 + with: + java-version: 17.0 + distribution: 'zulu' + cache: 'maven' + - name: Compile + run: mvn -B package --file pom.xml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}