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

78 lines
2.7 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:
2022-01-27 09:55:50 +07:00
operating-system: [ubuntu-20.04, ubuntu-18.04, windows-2019, macos-latest]
2021-09-02 01:48:50 +07:00
php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
2020-02-16 20:10:22 +07:00
env:
extensions: xml, opcache, xdebug, pcov
key: cache-v5
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
id: cache-env
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:
path: ${{ steps.cache-env.outputs.dir }}
key: ${{ steps.cache-env.outputs.key }}
restore-keys: ${{ steps.cache-env.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: |
php -r "if(ini_get('memory_limit')!='-1') {throw new Exception('memory_limit not disabled');}"
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');}"