Skip to content

wip: ocular upload 2 #70

wip: ocular upload 2

wip: ocular upload 2 #70

Workflow file for this run

name: run-tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [^10.0, ^11.0]
include:
- laravel: ^11.0
testbench: 9.0.2
- laravel: ^10.0
testbench: ^8.0
exclude:
- laravel: ^11.0
php: 8.1
name: P ${{ matrix.php }} L ${{ matrix.laravel }} T ${{ matrix.testbench }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- 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, pcov
tools: composer:v2
coverage: pcov
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --dev --no-interaction --no-progress --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Create tests database
run: |
mkdir -p database
touch database/database.sqlite
- name: Execute tests, generate code coverage report
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: vendor/bin/phpunit