The Tests Actions workflow is broken and actually never runs the tests.
This is because the workflow uses:
if [ "${arch}" = "amd64" ]; then docker compose exec tests vendor/bin/phpunit --configuration phpunit.xml --testsuite X86;elif [ "${arch}" = "arm64" ] || [ "${arch}" = "aarch64" ]; thendocker compose exec tests vendor/bin/phpunit --configuration phpunit.xml --testsuite ARM64; but as the workflow runs on ubuntu-latest , arch is always x86_64, meaning that the tests never actually run.
The Tests Actions workflow is broken and actually never runs the tests.
This is because the workflow uses:
but as the workflow runs on
ubuntu-latest,archis alwaysx86_64, meaning that the tests never actually run.