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

52 lines
1.6 KiB
YAML
Raw Normal View History

2019-10-30 04:43:56 +07:00
name: Darwin workflow
2019-10-10 19:17:17 +07:00
on: [push, pull_request]
2019-09-06 06:47:43 +07:00
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
2019-10-10 19:17:17 +07:00
fail-fast: false
max-parallel: 15
2019-09-06 06:47:43 +07:00
matrix:
2019-10-30 04:43:56 +07:00
operating-system: [macOS-latest]
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3']
2019-09-06 06:47:43 +07:00
steps:
- name: Checkout
uses: actions/checkout@master
2019-10-10 19:17:17 +07:00
with:
fetch-depth: 1
2019-09-06 06:47:43 +07:00
- name: Setup Node.js 12.x
2019-09-06 06:47:43 +07:00
uses: actions/setup-node@master
with:
node-version: 12.x
2019-09-06 06:47:43 +07:00
2019-10-10 19:17:17 +07:00
- name: Installing NPM packages
2019-09-06 06:47:43 +07:00
run: npm install
- name: Run tests
run: npm test
- name: Send Coverage
continue-on-error: true
timeout-minutes: 2
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 }}
2019-09-20 09:41:20 +07:00
2019-10-19 21:29:48 +07:00
- name: Setup PHP with extensions and custom config
2019-09-06 06:47:43 +07:00
run: node lib/install.js
env:
php-version: ${{ matrix.php-versions }}
extension-csv: mbstring, xdebug, pcov #optional
2019-10-08 19:42:54 +07:00
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');")