1 parent b589379 commit f2d943bCopy full SHA for f2d943b
1 file changed
.github/workflows/ci.yml
@@ -4,8 +4,9 @@
4
# - push / pull_request on the feature/3.0.x branch
5
# - manual workflow_dispatch
6
#
7
-# Runs `mvn -B clean verify` which includes the JaCoCo coverage gate
8
-# (90% line coverage, haltOnFailure=false) configured in the POM.
+# Runs `./mvnw -B clean verify` (Maven 4 via the checked-in wrapper — the
+# runner's bundled Maven 3 cannot parse the POM 4.1.0 model) which includes
9
+# the JaCoCo coverage gate (90% line coverage, haltOnFailure=false).
10
name: CI
11
12
on:
@@ -35,7 +36,7 @@ jobs:
35
36
cache: maven
37
38
- name: Build and verify with JaCoCo coverage gate
- run: mvn -B --no-transfer-progress clean verify
39
+ run: ./mvnw -B --no-transfer-progress clean verify
40
41
- name: Upload JaCoCo coverage report
42
if: always()
0 commit comments