1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-06 08:40:09 +01:00
Files
laravel-valet/.github/workflows/tests.yml
2020-11-03 11:02:18 +00:00

37 lines
736 B
YAML

name: Tests
on:
push:
pull_request:
jobs:
mac_tests:
runs-on: macos-latest
strategy:
fail-fast: true
matrix:
php: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, fileinfo
tools: composer:v2
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Execute tests
env:
APP_ENV: testing
run: vendor/bin/phpunit --verbose