Skip to content

Commit

Permalink
CI: temporarily skip unit tests for faster execution
Browse files Browse the repository at this point in the history
  • Loading branch information
guusdk committed Mar 8, 2024
1 parent ea6a6aa commit 9f57a23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- name: Build with Maven # We install instead of package, because we want the result in the local mvn repo
run: |
if [[ ${{ github.ref_name }} == 'main' ]]; then
./mvnw -B install -Pcoverage --file pom.xml
./mvnw -B install -Pcoverage --file pom.xml -Dmaven.test.skip=true; # FIXME do not skip tests. This was only added to speed up development of this workflow!
else
./mvnw -B install
./mvnw -B install -Dmaven.test.skip=true; # FIXME do not skip tests. This was only added to speed up development of this workflow!
fi
- name: Upload failed test reports
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 9f57a23

Please sign in to comment.