fixed a PDO error when calling addQuads multiple times #123
Workflow file for this run
This file contains hidden or 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 | |
| jobs: | |
| linux-tests: | |
| name: Linux-Tests with PHP ${{ matrix.php }} | |
| runs-on: ubuntu-latest | |
| env: | |
| DB_ADAPTER: pdo | |
| DB_PDO_PROTOCOL: sqlite | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: | |
| - 8.0 | |
| - 8.1 | |
| - 8.2 | |
| - 8.3 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: xdebug | |
| ini-values: memory_limit=1G | |
| - name: Install Composer dependencies | |
| run: composer install --no-progress --prefer-dist --optimize-autoloader | |
| - name: Tests | |
| run: vendor/bin/phpunit | |
| windows-tests: | |
| name: Windows-Tests with PHP ${{ matrix.php-versions }} | |
| runs-on: windows-2019 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php-versions: ['8.0', '8.1', '8.2', '8.3'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| ini-values: memory_limit=1G, | |
| extensions: pdo_sqlite | |
| - name: Install Composer dependencies | |
| run: composer update --no-progress --prefer-dist --optimize-autoloader | |
| - name: Tests | |
| run: vendor/bin/phpunit |