mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
25 lines
898 B
YAML
25 lines
898 B
YAML
# GitHub Action for Slim Framework
|
|
name: Testing Slim Framework
|
|
on: [push, pull_request]
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
max-parallel: 6
|
|
matrix:
|
|
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
|
php-versions: ['7.2', '7.3']
|
|
runs-on: ${{ matrix.operating-system }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- 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, simplexml, dom
|
|
coverage: xdebug #optional
|
|
- name: Install dependencies
|
|
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
|
|
- name: Test with phpunit
|
|
run: vendor/bin/phpunit --coverage-text
|
|
shell: pwsh |