gitignore .DS_Store #70
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, pull_request] | |
jobs: | |
phpunit: | |
name: Tests (PHPUnit) L${{ matrix.laravel }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- laravel: 9 | |
php: 8.0 | |
- laravel: 10 | |
php: 8.1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{matrix.php}} | |
- name: Start Redis | |
uses: supercharge/redis-github-action@1.1.0 | |
- name: Install dependencies | |
run: composer require "laravel/framework:^${{matrix.laravel}}.0" | |
- name: Run tests | |
run: vendor/bin/phpunit | |
php-cs-fixer: | |
name: Code style (php-cs-fixer) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install php-cs-fixer | |
run: composer global require friendsofphp/php-cs-fixer | |
- name: Run php-cs-fixer | |
run: $HOME/.composer/vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php | |
- name: Commit changes from php-cs-fixer | |
uses: EndBug/add-and-commit@v5 | |
with: | |
author_name: Samuel Štancl | |
author_email: samuel.stancl@gmail.com | |
message: Fix code style (php-cs-fixer) |