Skip to content

tests, dsl and foreignColumn fix #22

tests, dsl and foreignColumn fix

tests, dsl and foreignColumn fix #22

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
# - name: Unit Tests
# run: composer test:unit
# - name: Integration Tests
# run: composer test:integration