Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Support Laravel 11.x and phpUnit 10 #74

Support Laravel 11.x and phpUnit 10

Support Laravel 11.x and phpUnit 10 #74

Workflow file for this run

name: Run tests
on:
push:
pull_request:
types: [opened, synchronize, reopened]
jobs:
test-php:
name: Test on php ${{ matrix.php-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php-version: ["7.1.3", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2"]
experimental: [false]
os: [ubuntu-latest]
composer-options: ['']
include:
- { php-version: 'nightly', composer-options: '--ignore-platform-req=php', experimental: true, os: ubuntu-latest }
steps:
- uses: actions/checkout@v3
- name: Use php ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug
- name: Cache module
uses: actions/cache@v3
with:
path: ~/.composer/cache/
key: composer-cache
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress ${{ matrix.composer-options }}
- name: Run php tests
run: composer run test
- name: Send coverage
uses: codecov/codecov-action@v3