allow selecting columns to be saved when using auditDetach(), auditSync() and auditSyncWithoutDetaching() #242
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: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [7.4, 8.0, 8.1, 8.2] | |
laravel: [ 10.*, 9.*, 8.*, 7.* ] | |
include: | |
- laravel: 10.* | |
testbench: 8.* | |
- laravel: 9.* | |
testbench: 7.* | |
- laravel: 8.* | |
testbench: 6.* | |
- laravel: 7.* | |
testbench: 5.* | |
exclude: | |
- laravel: 10.* | |
php: 7.4 | |
- laravel: 10.* | |
php: 8.0 | |
- laravel: 9.* | |
php: 7.4 | |
- laravel: 7.* | |
php: 8.1 | |
- laravel: 7.* | |
php: 8.2 | |
name: PHP${{ matrix.php }} - Laravel${{ matrix.laravel }} - ${{ matrix.dependency-version }} | |
steps: | |
- name: Update apt | |
run: sudo apt-get update --fix-missing | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- 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, imagick | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer require "illuminate/console:${{ matrix.laravel }}" "illuminate/database:${{ matrix.laravel }}" "illuminate/filesystem:${{ matrix.laravel }}" "nesbot/carbon:^2.62.1" --no-interaction --no-update | |
composer require "orchestra/testbench:${{ matrix.testbench }}" --dev --no-interaction --no-update | |
composer update --prefer-dist --no-interaction --no-suggest | |
- name: Execute tests | |
run: vendor/bin/phpunit |