Skip to content

v2.12.x: Fixed expiration to be in seconds. (#29) #25

v2.12.x: Fixed expiration to be in seconds. (#29)

v2.12.x: Fixed expiration to be in seconds. (#29) #25

Workflow file for this run

name: "Run Tests - Laravel 6"
on:
push:
branches: [ v2.12 ]
pull_request:
branches: [ v2.12 ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [7.2, 7.3, 7.4]
laravel: [6.*]
include:
- laravel: 6.*
testbench: 4
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