Merge pull request #37 from Weebly/fix-original #48
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: Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
php-tests: | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:5.6 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: true | |
MYSQL_USER: mutate | |
MYSQL_PASSWORD: secret | |
MYSQL_DATABASE: circle-test | |
ports: | |
- 3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
strategy: | |
matrix: | |
php: [7.2, 7.3, 7.4, 8.0, 8.1] | |
laravel: [6.*, 7.*, 8.*] | |
include: | |
- laravel: 6.* | |
testbench: 4.* | |
- laravel: 7.* | |
testbench: 5.* | |
- laravel: 8.* | |
testbench: 6.* | |
exclude: | |
# Laravel 8 only support >= PHP 7.3 | |
- laravel: 8.* | |
php: 7.1 | |
- laravel: 8.* | |
php: 7.2 | |
# Laravel 6 only support PHP <=8.0 | |
- laravel: 6.* | |
php: 8.1 | |
# Laravel 7 only support PHP <=8.0 | |
- laravel: 7.* | |
php: 8.1 | |
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick | |
coverage: none | |
tools: composer:v2 | |
- name: Install PHP dependencies | |
run: | | |
composer require --dev "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --prefer-stable --no-interaction --no-progress | |
- name: Execute Unit Tests | |
run: vendor/bin/phpunit --testsuite Unit | |
- name: Execute Integration Tests | |
run: vendor/bin/phpunit --testsuite Integration | |
env: | |
DB_PORT: ${{ job.services.mysql.ports[3306] }} | |
- name: Run PHPStan | |
run: vendor/bin/phpstan analyze |