From ce39fe61c17d3b43fb32b39bef2f097e4889df32 Mon Sep 17 00:00:00 2001 From: Jonathan Basniak Date: Tue, 24 Sep 2024 11:53:41 -0400 Subject: [PATCH] ci: add ci.yml file --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..476cdb5 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: CI +on: + pull_request: +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + java-version: [17] + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 17 for x64 + uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.java-version }} + distribution: 'temurin' + architecture: x64 + cache: maven + - name: Build with Maven + run: mvn clean compile package -Dmaven.test.skip=true \ No newline at end of file