From 8ea744a4eba9778d0ceb1be9b0e58ac915daa2e1 Mon Sep 17 00:00:00 2001 From: James Buncle Date: Sat, 28 Mar 2026 20:48:37 +0000 Subject: [PATCH 1/2] Add validation workflow --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..3490e47 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI + +on: + push: + branches: + - main + - master + pull_request: + +jobs: + validate: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Java + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: '8' + cache: maven + + - name: Build with Maven + run: mvn -B package From e93c8ca51d1fce1f6a15846a6196007258bae9a7 Mon Sep 17 00:00:00 2001 From: James Buncle Date: Sat, 28 Mar 2026 20:50:07 +0000 Subject: [PATCH 2/2] Skip integration tests in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3490e47..d4339c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,4 +23,4 @@ jobs: cache: maven - name: Build with Maven - run: mvn -B package + run: mvn -B -DskipTests package