PHP Classes

File: .github/workflows/run-tests.yml

Recommend this page to a friend!
  Packages of Alberto Arena   Laravel Truss   .github/workflows/run-tests.yml   Download  
File: .github/workflows/run-tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Truss
View a diagram of a Laravel application models
Author: By
Last change:
Date: 9 days ago
Size: 1,209 bytes
 

Contents

Class file image Download
name: tests on: push: branches: [main] pull_request: branches: [main] jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest] php: ['8.3', '8.4', '8.5'] laravel: ['12.*', '13.*'] stability: [prefer-stable] include: - laravel: '12.*' testbench: '10.*' - laravel: '13.*' testbench: '11.*' name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: - name: Checkout code uses: actions/checkout@v7 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, intl, fileinfo coverage: none - name: Install dependencies run: | composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Run tests run: vendor/bin/pest