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

73 lines
2.0 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-10-30 04:43:56 +07:00
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3']
steps:
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 1
- name: Setup Node.js 12.x
uses: actions/setup-node@master
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 }}
extension-csv: mbstring, xdebug, pcov #optional
ini-values-csv: post_max_size=256M, short_open_tag=On, date.timezone=Asia/Kolkata #optional
- name: Testing PHP version
run: php -v
- name: Testing Composer version
run: composer -V
- name: Testing Extensions
run: php -m
- name: Testing ini values
run: |
printf "post_max_size: %s\n" $(php -r "echo ini_get('post_max_size');")
printf "short_open_tag: %s\n" $(php -r "echo ini_get('short_open_tag');")
printf "date.timezone: %s\n" $(php -r "echo ini_get('date.timezone');")