We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3a6a3d commit 633176fCopy full SHA for 633176f
1 file changed
.github/workflows/main.yaml
@@ -45,6 +45,26 @@ jobs:
45
cd examples
46
./build-all.sh --profile=validation
47
48
+ - name: Run unit tests
49
+ shell: bash
50
+ run: |
51
+ cd tests/unit_tests
52
+ alr build \
53
+ --profiles=unit_tests=validation,libsap=validation \
54
+ -- \
55
+ -XUNIT_TEST_REPORT_FORMAT=XML
56
+ mkdir reports
57
+ bin/unit_tests > reports/unit_tests.xml
58
+ cat unit_tests.xml
59
+
60
+ - name: Test Report
61
+ uses: dorny/test-reporter@v2
62
+ if: ${{ !cancelled() }} # run this step even if previous step failed
63
+ with:
64
+ name: Unit Tests
65
+ path: tests/unit_tests/reports/*.xml
66
+ reporter: java-junit
67
68
prove:
69
needs: setup
70
runs-on: ubuntu-latest
0 commit comments