From 81f842e2bbf964189622033317e7a8f9f2521d15 Mon Sep 17 00:00:00 2001 From: Leandro Afonso Date: Wed, 19 Nov 2025 20:54:47 +0000 Subject: [PATCH] Change CI branch from 'main' to 'dev' --- .github/workflows/maven.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 344c385..83392b4 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -2,7 +2,7 @@ name: Java CI with Maven on: push: - branches: [ "main" ] + branches: [ "dev" ] tags: - 'v*.*.*' pull_request: @@ -23,6 +23,7 @@ jobs: cache: maven - name: Build with Maven + # mvn package includes the 'test' phase, so unit tests run here automatically. run: mvn -B package working-directory: main