utopia-php / utopia-php/system
Tests Workflow is broken
Open
@M4dhav is already working on this.
Since Dec 6, 2025.
enhancement
- Dominant language
- PHP
- Stars
- 26
- Forks
- 14
- PR merge metrics
- No merged PRs in 30d
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.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.