2019-10-10 19:17:17 +07:00
|
|
|
# GitHub Action for Zend Framework
|
2019-10-08 19:42:54 +07:00
|
|
|
name: Testing Zend Framework
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-01-21 09:55:14 +07:00
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
2019-12-09 13:50:03 +07:00
|
|
|
php-versions: ['7.2', '7.3', '7.4']
|
2019-10-08 19:42:54 +07:00
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2020-01-02 00:06:25 +07:00
|
|
|
uses: actions/checkout@v2
|
2019-10-08 19:42:54 +07:00
|
|
|
- name: Setup PHP, with composer and extensions
|
2020-02-14 14:15:46 +07:00
|
|
|
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
|
2019-10-08 19:42:54 +07:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
2019-12-09 12:22:43 +07:00
|
|
|
extensions: mbstring, bcmath, curl, intl
|
2019-10-08 19:42:54 +07:00
|
|
|
coverage: xdebug #optional
|
2019-11-27 07:30:34 +07:00
|
|
|
- name: Get composer cache directory
|
2020-06-19 05:56:37 +07:00
|
|
|
id: composercache
|
2019-11-27 07:30:34 +07:00
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- name: Cache composer dependencies
|
2020-05-30 12:57:44 +07:00
|
|
|
uses: actions/cache@v2
|
2019-11-27 07:30:34 +07:00
|
|
|
with:
|
2020-06-19 05:56:37 +07:00
|
|
|
path: ${{ steps.composercache.outputs.dir }}
|
2019-12-28 01:53:51 +07:00
|
|
|
# Use composer.json for key, if composer.lock is not committed.
|
|
|
|
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
2019-11-27 07:30:34 +07:00
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
2019-10-08 19:42:54 +07:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
|
|
|
|
composer require --dev phpunit/phpunit squizlabs/php_codesniffer zendframework/zend-test
|
|
|
|
- name: Test with phpunit
|
2019-10-25 04:30:35 +07:00
|
|
|
run: vendor/bin/phpunit --coverage-text
|