Sqlite: Fix LIKE BINARY queries #114
Workflow file for this run
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: PHPUnit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: PHP ${{ matrix.php }} | |
uses: ./.github/workflows/phpunit-tests-run.yml | |
permissions: | |
contents: read | |
secrets: inherit | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
# NOTE: There does not appear to be a single phpunit version that supports all | |
# PHP versions tested here. For now, we are removing PHP 7.0. and 7.1 tests | |
# in order to run a single phpunit version for PHP 7.2 and up. | |
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] | |
with: | |
os: ${{ matrix.os }} | |
php: ${{ matrix.php }} | |
phpunit-config: ${{ 'phpunit.xml.dist' }} |