diff options
-rw-r--r-- | .github/workflows/phpunit.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index 7f3c867..54f0af8 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -1,5 +1,7 @@ name: Testing php7-mysql-shim on: [push, pull_request] +env: + fail-fast: true jobs: lib: name: php7-mysql-shim (PHP ${{ matrix.php-versions }}) @@ -16,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['5.3', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] + php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4'] steps: - name: Checkout uses: actions/checkout@v2 @@ -44,3 +46,5 @@ jobs: composer update --no-interaction --prefer-source - name: Run Tests run: composer run test -- --coverage-text + env: + MYSQL_HOST: localhost:${{ job.services.mysql.ports['3306'] }} |