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

80 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:
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:
2019-11-22 02:46:07 +07:00
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
2019-11-30 06:53:14 +07:00
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
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
- name: Setup Node.js 12.x
2019-11-28 06:47:56 +07:00
uses: actions/setup-node@v1
2019-10-30 04:43:56 +07:00
with:
node-version: 12.x
2019-11-24 03:34:12 +07:00
- name: Install dependencies
2019-10-30 04:43:56 +07:00
run: npm install
2019-11-24 03:34:12 +07:00
- name: Prettier Format Check
run: npm run format-check
- name: ESLint Check
run: npm run lint
2019-10-30 04:43:56 +07:00
- name: Run tests
run: npm test
- name: Send Coverage
continue-on-error: true
2019-11-24 03:34:12 +07:00
timeout-minutes: 1
2019-10-30 04:43:56 +07:00
run: curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/clover.xml -n github-actions-codecov-${{ matrix.operating-system }}-php${{ matrix.php-versions }}
- 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 }}
2019-12-19 12:59:27 +07:00
extensions: xml, opcache, xdebug, pcov #optional
ini-values: post_max_size=256M, short_open_tag=On, date.timezone=Asia/Kolkata #optional
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');}"