Add encrypted casts support + allow using the trait on multiple models #88
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: run-tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- laravel: 9 | |
php: 8.0 | |
- laravel: 10 | |
php: 8.1 | |
name: Tests (PHPUnit) - L${{ matrix.laravel }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{matrix.php}} | |
- 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) |