fix an issue where the tablespaces configuration option was not appli… #416
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
execute-tests: | |
name: Setup testing environment and execute tests | |
uses: cybex-gmbh/github-workflows/.github/workflows/tests.yml@main | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ 8.1, 8.2, 8.3 ] | |
laravel: [ 9.*, 10.*, 11.* ] | |
dependency-version: [ prefer-stable ] | |
exclude: | |
- php: 8.3 | |
laravel: 9.* | |
- php: 8.1 | |
laravel: 11.* | |
with: | |
PHP_VERSION: ${{ matrix.php }} | |
LARAVEL_VERSION: ${{ matrix.laravel }} | |
DEPENDENCY_VERSION: ${{ matrix.dependency-version }} | |
MYSQL_DATABASE: protector_test | |
TEST_COMMANDS: vendor/bin/phpunit -c phpunit-ci.xml.dist |