We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a0d6ed commit 1af0b50Copy full SHA for 1af0b50
1 file changed
.github/workflows/build.yml
@@ -67,4 +67,19 @@ jobs:
67
run: $GHIDRA_INSTALL_DIR/support/sleigh $GHIDRA_INSTALL_DIR/Ghidra/Processors/x86/data/languages/x86-64.slaspec
68
69
- name: Run tests
70
- run: xvfb-run ./gradlew test --info
+ run: xvfb-run ./gradlew test
71
+
72
+ - name: Upload test results
73
+ if: always()
74
+ uses: actions/upload-artifact@v4
75
+ with:
76
+ name: test-results-ghidra-${{ matrix.ghidra }}
77
+ path: build/reports/tests/test/
78
79
+ - name: Publish test report
80
81
+ uses: dorny/test-reporter@v1
82
83
+ name: Tests (Ghidra ${{ matrix.ghidra }})
84
+ path: build/test-results/test/*.xml
85
+ reporter: java-junit
0 commit comments