Skip to content

v4.x: Fixed expiration to be in seconds. (#31) #20

v4.x: Fixed expiration to be in seconds. (#31)

v4.x: Fixed expiration to be in seconds. (#31) #20

Workflow file for this run

name: "Run Tests - Laravel 8"
on:
push:
branches: [ v4.x ]
pull_request:
branches: [ v4.x ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0]
laravel: [8.*]
include:
- laravel: 8.*
testbench: 6
name: P${{ matrix.php }} - L${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: pdo, sqlite, pdo_sqlite
- name: Install Dependencies
run: composer install
- name: Execute tests
run: vendor/bin/phpunit