Skip to content

Updated mongodb/laravel-mongodb to stable version 4. #9

Updated mongodb/laravel-mongodb to stable version 4.

Updated mongodb/laravel-mongodb to stable version 4. #9

Workflow file for this run

name: "Run Tests - Laravel 10"
on:
push:
branches: [ v6.x, master ]
pull_request:
branches: [ v6.x, master ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.1]
laravel: [10.*]
include:
- laravel: 10.*
testbench: 8.*
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