diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf7291031..cf0eb44bf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,13 +6,13 @@ jobs: strategy: matrix: php: - - 8.0 - - 7.4 - - 7.3 - - 7.2 - - 7.1 - - 7.0 - - 5.6 + - '8.0' + - '7.4' + - '7.3' + - '7.2' + - '7.1' + - '7.0' + - '5.6' name: PHP ${{ matrix.php }} build env: PHP_CS_FIXER_IGNORE_ENV: 1 diff --git a/tests/waitPackagist.php b/tests/waitPackagist.php index 8c8777ae5..a2a9afd16 100755 --- a/tests/waitPackagist.php +++ b/tests/waitPackagist.php @@ -5,6 +5,8 @@ $commit = getenv('GITHUB_SHA'); $branch = \trim(\shell_exec("git rev-parse --abbrev-ref $commit")); $tag = \trim(\shell_exec("git tag --points-at $commit")); +echo "Waiting for commit $commit on branch $branch (tag $tag)...".PHP_EOL; + $branch = $tag ? $tag : "dev-$branch"; while (true) {