PHP Classes

File: .github/workflows/ci-phpstan.yml

Recommend this page to a friend!
  Packages of Victor John Ukam   Laravel Active Email   .github/workflows/ci-phpstan.yml   Download  
File: .github/workflows/ci-phpstan.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Active Email
Validate email to reject disposable addresses
Author: By
Last change:
Date: 3 months ago
Size: 1,258 bytes
 

Contents

Class file image Download
name: run-phpstan on: pull_request: jobs: run-tests: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php: [8.1, 8.2, 8.3] laravel: [10.*, 11.*] include: - laravel: 11.* testbench: 9.* - laravel: 10.* testbench: 8.* exclude: - laravel: 11.* php: 8.1 name: PHP${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: - name: Update apt run: sudo apt-get update --fix-missing - name: Checkout code uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none - name: Setup Problem Matches run: | echo "::add-matcher::${{ runner.tool_cache }}/php.json" echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Install dependencies run: | composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update composer update --prefer-dist --no-interaction --no-suggest - name: Run Larastan run: vendor/bin/phpstan analyse