-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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" ]; then
docker 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.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request