Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

wip

wip #286

Workflow file for this run

name: Test Suite
on:
push:
pull_request:
jobs:
php_tests:
if: "!contains(github.event.head_commit.message, 'changelog')"
runs-on: ${{ matrix.os }}
strategy:
matrix:
php: [8.2, 8.1]
laravel: [10.*]
statamic: [^4.0]
testbench: [8.*]
os: [ubuntu-latest]
name: ${{ matrix.php }} - ${{ matrix.statamic }} - ${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- 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
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.framework }}" "statamic/cms:${{ matrix.statamic }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer install --no-interaction
- name: Run PHPUnit
run: composer test