fix: set /bin/phpunit on tests for jobs to PHP 8

This commit is contained in:
vnmedeiros 2021-07-15 11:15:02 -03:00
parent 99bd661495
commit 9dd46c1094
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ jobs:
run: |
if [[ "${{ matrix.php }}" = "8.0" ]]; then
wget https://phar.phpunit.de/phpunit-8.3.1.phar -P /tmp
chmod +x /tmp/phpunit-6.5.7.phar
mv /tmp/phpunit-6.5.7.phar /usr/local/bin/phpunit
chmod +x /tmp/phpunit-8.3.1.phar
mv /tmp/phpunit-8.3.1.phar /usr/local/bin/phpunit
elif [[ "${{ matrix.php }}" > "6.0" ]]; then
wget https://phar.phpunit.de/phpunit-6.5.7.phar -P /tmp
chmod +x /tmp/phpunit-6.5.7.phar