Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Merge pull request #160 from TwilioDevEd/fix-alice-deprecation #151

Merge pull request #160 from TwilioDevEd/fix-alice-deprecation

Merge pull request #160 from TwilioDevEd/fix-alice-deprecation #151

Workflow file for this run

name: Laravel
on:
push:
branches: [ master, next ]
pull_request:
branches: [ master, next ]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 3
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: mbstring, fileinfo, pdo_sqlite
coverage: none
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate --force
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: |
vendor/bin/phpunit