PHP Classes

File: .github/workflows/action_pr_main.yml

Recommend this page to a friend!
  Classes of Lucas Nepomuceno   Laravel Brazilian CEPs   .github/workflows/action_pr_main.yml   Download  
File: .github/workflows/action_pr_main.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Brazilian CEPs
Search locations and zip codes in Brazil
Author: By
Last change:
Date: 1 year ago
Size: 739 bytes
 

Contents

Class file image Download
name: Laravel Brazilian Ceps on: push: branches: [ main, dev ] pull_request: branches: [ main, dev ] jobs: php-unit: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 with: php-version: '8.1' tools: composer:v2 extensions: mbstring, dom, fileinfo, openssl, json - name: Validate composer.json e composer.lock run: composer validate - name: Install dependencys run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist - name: Execute tests run: vendor/bin/phpunit