Skip to content

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

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

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

Workflow file for this run

name: "Run Tests - Laravel 5"
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: [5.*]
include:
- laravel: 5.*
testbench: 3
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