Skip to content

feat: Add MySQL integration tests workflow and update test command to… #5

feat: Add MySQL integration tests workflow and update test command to…

feat: Add MySQL integration tests workflow and update test command to… #5

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.2', '8.3']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: pdo, pdo_mysql
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: composer test --exclude-group integration