diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 065dd77..98b8dd1 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -14,7 +14,7 @@ jobs: - name: get the code uses: actions/checkout@v6 - name: package the code - run: mvn package + run: mvn --batch-mode -Dmaven.test.failure.ignore=true test - name: publish test results uses: EnricoMi/publish-unit-test-result-action@v2 with: diff --git a/src/test/java/com/example/AppTest.java b/src/test/java/com/example/AppTest.java index 474710c..e85c480 100644 --- a/src/test/java/com/example/AppTest.java +++ b/src/test/java/com/example/AppTest.java @@ -35,4 +35,12 @@ public void testApp() { assertTrue( true ); } + + /** + * Rigourous Test :-) + */ + public void testAppOther() + { + assertTrue( true ); + } }