PHP Classes

File: .github/workflows/test.yml

Recommend this page to a friend!
  Packages of Alberto Arena   Laravel Event Sourcing Generator   .github/workflows/test.yml   Download  
File: .github/workflows/test.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Event Sourcing Generator
Generate classes for event sourcing
Author: By
Last change:
Date: 7 days ago
Size: 835 bytes
 

Contents

Class file image Download
name: Tests on: workflow_dispatch: push: pull_request: jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ ubuntu-latest ] php: [ 8.3, 8.4 ] dependency-version: [ prefer-lowest, prefer-stable ] name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: dom, curl, libxml, mbstring, zip, http coverage: none - name: Install dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - name: Execute tests run: composer run test