This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
Apply fixes from StyleCI #446
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- '8.0' | |
- '8.1' | |
laravel: | |
- 9.* | |
prefer: | |
- 'prefer-lowest' | |
- 'prefer-stable' | |
include: | |
- laravel: '9.*' | |
testbench: '7.*' | |
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv | |
coverage: pcov | |
- name: Setup MySQL | |
uses: haltuf/mysql-action@master | |
with: | |
mysql version: '8.0' | |
mysql database: 'websockets_test' | |
mysql root password: 'password' | |
- name: Setup Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: 6 | |
- uses: actions/cache@v1 | |
name: Cache dependencies | |
with: | |
path: ~/.composer/cache/files | |
key: composer-php-${{ matrix.php }}-${{ matrix.laravel }}-${{ matrix.prefer }}-${{ hashFiles('composer.json') }} | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench-browser-kit:${{ matrix.testbench }}" "orchestra/database:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction --no-suggest | |
- name: Run tests for Local | |
run: | | |
REPLICATION_MODE=local vendor/bin/phpunit --coverage-text --coverage-clover=coverage_local.xml | |
- name: Run tests for Redis | |
run: | | |
REPLICATION_MODE=redis vendor/bin/phpunit --coverage-text --coverage-clover=coverage_redis.xml | |
- uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: false | |
file: '*.xml' | |
token: ${{ secrets.CODECOV_TOKEN }} |