Skip to content

Commit 1ec165b

Browse files
committed
Fix the upload of the unit test results
We expect the file to be named per matrix job but this was not updated in the code so the upload action couldn't find the files.
1 parent 0cfe72c commit 1ec165b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/jobs/unit-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ php $phpcov webapp/bin/phpunit -c webapp/phpunit.xml.dist webapp/tests/$unittest
3636
UNITSUCCESS=$?
3737

3838
# Store the unit tests also in the root for the GHA
39-
cp $ARTIFACTS/unit-tests.xml $DIR/
39+
cp $ARTIFACTS/unit-tests.xml $DIR/unit-tests-${version}-${unittest}.xml
4040

4141
# Make sure the log exists before copy
4242
touch ${DIR}/webapp/var/log/test.log

0 commit comments

Comments
 (0)