Skip to content
Merged
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
10 changes: 9 additions & 1 deletion .github/workflows/maven-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,15 @@ jobs:
- name: Build with Maven
working-directory: latte
run: mvn -B package --file pom.xml

- name: Run tests with Maven
working-directory: latte
run: mvn test --file pom.xml
- name: Upload test results
if: always() # This ensures the test results are uploaded even if tests fail
uses: actions/upload-artifact@v4.6.2
with:
name: test-results
path: latte/latte/target/test-*.xml # Maven Surefire generates the test result files here
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
- name: Update dependency graph
run: |
Expand Down
Loading