Add simple default goal.
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 34b72d0..069dc2a 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -44,4 +44,4 @@
         distribution: 'temurin'
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V package --file pom.xml --no-transfer-progress
+      run: mvn -V --file pom.xml --no-transfer-progress
diff --git a/pom.xml b/pom.xml
index a29650d..1f393a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -207,10 +207,11 @@
   </properties>
 
   <build>
+    <defaultGoal>clean verify</defaultGoal>
     <plugins>
       <plugin>
         <!--
-          - A number of the pre-maven test case "suport" classes have names starting with Test.
+          - A number of the pre-maven test case "support" classes have names starting with Test.
           - This confuses the maven surefire "auto-detect test case" functionality, so we
           - need to manually exclude them.
           -->