mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
29 lines
1.1 KiB
YAML
29 lines
1.1 KiB
YAML
|
# GitHub Action for Lumen
|
||
|
name: Unit Testing Lumen
|
||
|
on: [push, pull_request]
|
||
|
jobs:
|
||
|
lumen:
|
||
|
name: Lumen (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }})
|
||
|
runs-on: ${{ matrix.operating-system }}
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
max-parallel: 9
|
||
|
matrix:
|
||
|
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
||
|
php-versions: ['7.2', '7.3']
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v1
|
||
|
- name: Setup PHP, with composer and extensions
|
||
|
uses: shivammathur/setup-php@master #https://github.com/shivammathur/setup-php
|
||
|
with:
|
||
|
php-version: ${{ matrix.php-versions }}
|
||
|
extension-csv: mbstring, dom, fileinfo, mysql
|
||
|
coverage: xdebug #optional
|
||
|
- name: Install Composer dependencies
|
||
|
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
|
||
|
- name: Prepare the application
|
||
|
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
|
||
|
- name: Test with phpunit
|
||
|
run: vendor/bin/phpunit --coverage-text
|
||
|
shell: pwsh
|