Update dependencies #39
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: build | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [8.0, 8.1, 8.2, 8.3] | |
laravel: [8.*, 9.*, 10.*, 11.*] | |
dependency-version: [prefer-stable] | |
os: [ubuntu-latest] | |
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} | |
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, swoole | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer require "illuminate/contracts=${{ matrix.laravel }}" --no-interaction --no-update | |
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction | |
- name: Execute tests | |
run: vendor/bin/phpunit --verbose | |
coverage: | |
runs-on: ubuntu-latest | |
name: Coverage | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
extensions: dom, curl, libxml, mbstring, zip, swoole | |
tools: composer:v2 | |
coverage: xdebug | |
- name: Install dependencies | |
run: | | |
composer require "illuminate/contracts=8.*" --no-interaction --no-update | |
composer require --dev scrutinizer/ocular | |
composer update --prefer-stable --prefer-dist --no-interaction | |
- name: Execute tests | |
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover | |
- name: Upload coverage | |
run: php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover | |
style: | |
runs-on: ubuntu-latest | |
name: Coding style | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
tools: phpcs | |
coverage: none | |
- name: Execute check | |
run: phpcs --standard=psr12 src/ |