PHP Classes

File: .github/workflows/code-analyze.yml

Recommend this page to a friend!
  Classes of Andrey Iatsenko   Laravel Local Email Sender   .github/workflows/code-analyze.yml   Download  
File: .github/workflows/code-analyze.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Local Email Sender
Send email messages to logs that can be viewed
Author: By
Last change:
Date: 8 months ago
Size: 890 bytes
 

Contents

Class file image Download
name: Code analyze on: push: branches: [ master, dev ] pull_request: branches: [ master, dev ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # Setup PHP versions, run checks - name: PHP setup uses: shivammathur/setup-php@v2 with: php-version: 8.0 - name: Cache Composer packages id: composer-cache uses: actions/cache@v2 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php- - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress --no-suggest - name: Run phpstan run: composer run-script phpstan - name: Check codestyle run: composer run-script phpcs