Made the Channelable
MorphToMany pivot definitions explicit
#793
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.2', '8.3'] | |
laravel: ['10.43', '10.48', '11.0', '11.14'] | |
name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Installing PHP | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring, json, sqlite3 | |
tools: composer:v2 | |
- name: Lock Laravel Version | |
run: composer require "laravel/framework:${{ matrix.laravel }}.*" --no-update -v | |
- name: Composer Install | |
run: composer install --prefer-dist --no-progress --no-interaction | |
- name: Create SQLite Database | |
run: mkdir -p database && touch database/database.sqlite | |
- name: Run Tests [sqlite] | |
run: php vendor/bin/phpunit --stop-on-defect --testdox | |
env: | |
TEST_DB_ENGINE: sqlite | |
- name: Run Tests [postgres] | |
run: php vendor/bin/phpunit --stop-on-defect --testdox | |
env: | |
TEST_DB_ENGINE: pgsql | |
TEST_DB_PORT: ${{ job.services.postgres.ports[5432] }} | |
TEST_DB_PASSWORD: postgres | |
- name: Run Tests [mysql 5.7] | |
run: php vendor/bin/phpunit --stop-on-defect --testdox | |
env: | |
TEST_DB_ENGINE: mysql | |
TEST_DB_PORT: ${{ job.services.mysql.ports[3306] }} | |
- name: Run Tests [mysql 8.0] | |
run: php vendor/bin/phpunit --stop-on-defect --testdox | |
env: | |
TEST_DB_ENGINE: mysql | |
TEST_DB_PORT: ${{ job.services.mysql8.ports[3306] }} | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
MYSQL_DATABASE: vanilo_test | |
ports: | |
- 3306 | |
mysql8: | |
image: mysql:8.0 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: yes | |
MYSQL_DATABASE: vanilo_test | |
ports: | |
- 3306 | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: vanilo_test | |
ports: | |
- 5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 |