PHP Classes

File: .github/workflows/laravel.yml

Recommend this page to a friend!
  Classes of Hicri   Brave Search API   .github/workflows/laravel.yml   Download  
File: .github/workflows/laravel.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Brave Search API
Search the Web using the Brave Search API
Author: By
Last change:
Date: 2 days ago
Size: 567 bytes
 

Contents

Class file image Download
name: Laravel on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: laravel-tests: runs-on: ubuntu-latest steps: - uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e with: php-version: '8.1' - uses: actions/checkout@v4 - name: Copy .env run: php -r "file_exists('.env') || copy('.env.example', '.env');" - name: Install Dependencies run: composer install - name: PHPStan run: vendor/bin/phpstan - name: Run test suite run: vendor/bin/phpunit