94 lines
3.3 KiB
YAML
Raw Normal View History

2019-11-22 01:16:07 +05:30
name: Main workflow
2019-11-24 02:04:12 +05:30
on:
2020-07-07 16:36:32 +05:30
workflow_dispatch:
2019-11-24 02:04:12 +05:30
pull_request:
branches:
- master
- develop
- verbose
paths-ignore:
- '**.md'
2019-11-27 20:26:36 +05:30
- 'examples/**'
2019-11-24 02:04:12 +05:30
push:
branches:
- master
- develop
- verbose
paths-ignore:
- '**.md'
2019-11-27 20:26:36 +05:30
- 'examples/**'
permissions:
contents: read
2023-01-29 21:47:34 +05:30
env:
default-php-version: '8.2'
2019-10-30 03:13:56 +05:30
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
2023-04-03 10:11:53 +05:30
operating-system: [ubuntu-22.04, ubuntu-20.04, windows-2019, macos-latest]
2023-12-07 10:46:39 -06: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', '8.3', '8.4']
2023-01-29 21:41:09 +05:30
include:
- operating-system: ubuntu-22.04
php-versions: ''
php-version-file: 'php-version-file'
2020-02-16 18:40:22 +05:30
env:
extensions: xml, opcache, xdebug, pcov, gd
key: cache-v5
2019-10-30 03:13:56 +05:30
steps:
- name: Checkout
2023-09-09 16:23:40 +05:30
uses: actions/checkout@v4
2019-10-30 03:13:56 +05:30
2020-02-16 18:40:22 +05:30
- name: Setup cache environment
id: cache-env
uses: shivammathur/cache-extensions@develop
2020-02-16 18:40:22 +05:30
with:
2023-01-29 21:47:34 +05:30
php-version: ${{ matrix.php-versions || env.default-php-version }}
2020-02-16 18:40:22 +05:30
extensions: ${{ env.extensions }}
key: ${{ env.key }}
- name: Cache extensions
uses: actions/cache@v4
2020-02-16 18:40:22 +05:30
with:
path: ${{ steps.cache-env.outputs.dir }}
key: ${{ steps.cache-env.outputs.key }}
restore-keys: ${{ steps.cache-env.outputs.key }}
2020-02-16 18:40:22 +05:30
2023-01-29 21:41:09 +05:30
- name: Stage php-version-file
if: ${{ matrix.php-version-file == 'php-version-file' }}
run: |
2023-01-29 21:47:34 +05:30
echo ${{ env.default-php-version }} > php-version-file
2023-01-29 21:41:09 +05:30
2019-10-30 03:13:56 +05:30
- name: Setup PHP with extensions and custom config
2019-11-24 05:14:53 +05:30
run: node dist/index.js
2019-10-30 03:13:56 +05:30
env:
php-version: ${{ matrix.php-versions }}
2023-01-29 21:41:09 +05:30
php-version-file: ${{ matrix.php-version-file }}
2020-02-16 18:40:22 +05:30
extensions: ${{ env.extensions }}
ini-values: post_max_size=256M, short_open_tag=On, date.timezone=Asia/Kolkata
2019-10-30 03:13:56 +05:30
- name: Testing PHP version
2019-11-30 05:23:14 +05:30
run: |
php -v
2023-01-29 21:47:34 +05:30
php -r "if(strpos(phpversion(), '${{ matrix.php-versions || env.default-php-version }}') === false) {throw new Exception('Wrong PHP version Installed');}"
2019-11-30 05:23:14 +05:30
2019-10-30 03:13:56 +05:30
- name: Testing Composer version
2019-11-30 05:23:14 +05:30
run: |
composer -V
php -r "if(strpos(@exec('composer -V'), 'Composer version') === false) {throw new Exception('Composer not found');}"
2019-10-30 03:13:56 +05:30
- name: Testing Extensions
2019-11-30 05:23:14 +05:30
run: |
php -m
2022-07-15 23:22:56 +05:30
php -r "if(! extension_loaded('gd')) {throw new Exception('gd not found');}"
2019-12-19 11:29:27 +05:30
php -r "if(! extension_loaded('xml')) {throw new Exception('xml not found');}"
2019-11-30 05:23:14 +05:30
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 03:13:56 +05:30
- name: Testing ini values
run: |
php -r "if(ini_get('memory_limit')!='-1') {throw new Exception('memory_limit not disabled');}"
2019-11-30 05:23:14 +05:30
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');}"
2023-11-30 09:53:39 -06:00
php -r "if(ini_get('date.timezone')!='Asia/Kolkata') {throw new Exception('date.timezone not added');}"