Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ jobs:
cache: maven

- name: Build with Maven
run: ./mvnw -B clean verify -DskipTests --file pom.xml
# Use 'install' instead of 'verify' and skip Checkstyle during this setup run.
# Checkstyle can be enforced in full CI or local runs; skipping it here speeds dependency installation.
run: ./mvnw -B clean install -DskipTests -Dcheckstyle.skip=true --file pom.xml