setup-php/.github/workflows/workflow.yml

77 lines
2.6 KiB
YAML
Raw Normal View History

2019-11-22 02:46:07 +07:00
name: Main workflow
2019-11-24 03:34:12 +07:00
on:
2020-07-07 18:06:32 +07:00
workflow_dispatch:
2019-11-24 03:34:12 +07:00
pull_request:
branches:
- master
- develop
- verbose
paths-ignore:
- '**.md'
2019-11-27 21:56:36 +07:00
- 'examples/**'
2019-11-24 03:34:12 +07:00
push:
branches:
- master
- develop
- verbose
paths-ignore:
- '**.md'
2019-11-27 21:56:36 +07:00
- 'examples/**'
2019-10-30 04:43:56 +07:00
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
2020-06-09 08:48:43 +07:00
operating-system: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04, windows-latest, macos-latest]
2020-06-19 05:39:13 +07:00
php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
2020-02-16 20:10:22 +07:00
env:
extensions: xml, opcache, xdebug, pcov
2020-07-08 08:14:18 +07:00
key: cache-v3
2019-10-30 04:43:56 +07:00
steps:
- name: Checkout
2020-01-02 00:06:25 +07:00
uses: actions/checkout@v2
2019-10-30 04:43:56 +07:00
2020-02-16 20:10:22 +07:00
- name: Setup cache environment
2020-06-19 05:56:37 +07:00
id: extcache
uses: shivammathur/cache-extensions@develop
2020-02-16 20:10:22 +07:00
with:
php-version: ${{ matrix.php-versions }}
extensions: ${{ env.extensions }}
key: ${{ env.key }}
- name: Cache extensions
2020-05-30 12:57:44 +07:00
uses: actions/cache@v2
2020-02-16 20:10:22 +07:00
with:
2020-06-19 05:56:37 +07:00
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
restore-keys: ${{ steps.extcache.outputs.key }}
2020-02-16 20:10:22 +07:00
2019-10-30 04:43:56 +07:00
- name: Setup PHP with extensions and custom config
2019-11-24 06:44:53 +07:00
run: node dist/index.js
2019-10-30 04:43:56 +07:00
env:
php-version: ${{ matrix.php-versions }}
2020-02-16 20:10:22 +07:00
extensions: ${{ env.extensions }}
ini-values: post_max_size=256M, short_open_tag=On, date.timezone=Asia/Kolkata
2019-10-30 04:43:56 +07:00
- name: Testing PHP version
2019-11-30 06:53:14 +07:00
run: |
php -v
php -r "if(strpos(phpversion(), '${{ matrix.php-versions }}') === false) {throw new Exception('Wrong PHP version Installed');}"
2019-10-30 04:43:56 +07:00
- name: Testing Composer version
2019-11-30 06:53:14 +07:00
run: |
composer -V
php -r "if(strpos(@exec('composer -V'), 'Composer version') === false) {throw new Exception('Composer not found');}"
2019-10-30 04:43:56 +07:00
- name: Testing Extensions
2019-11-30 06:53:14 +07:00
run: |
php -m
2019-12-19 12:59:27 +07:00
php -r "if(! extension_loaded('xml')) {throw new Exception('xml not found');}"
2019-11-30 06:53:14 +07:00
php -r "if(! extension_loaded('Xdebug')) {throw new Exception('Xdebug not found');}"
php -r "if(phpversion()>=7.1 && ! extension_loaded('pcov')) {throw new Exception('PCOV not found');}"
2019-10-30 04:43:56 +07:00
- name: Testing ini values
run: |
2019-11-30 06:53:14 +07:00
php -r "if(ini_get('post_max_size')!='256M') {throw new Exception('post_max_size not added');}"
php -r "if(ini_get('short_open_tag')!=1) {throw new Exception('short_open_tag not added');}"
php -r "if(ini_get('date.timezone')!='Asia/Kolkata') {throw new Exception('date.timezone not added');}"