Skip to content

Tests Workflow is broken #33

Description

@M4dhav

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.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions