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

31 lines
774 B
YAML
Raw Normal View History

2019-09-06 06:47:43 +07:00
name: Main workflow
on: [push]
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
2019-09-07 19:31:50 +07:00
max-parallel: 6
2019-09-06 06:47:43 +07:00
matrix:
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
2019-09-09 07:11:17 +07:00
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
2019-09-06 06:47:43 +07:00
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set Node.js 10.x
uses: actions/setup-node@master
with:
version: 10.x
2019-09-06 07:05:52 +07:00
- name: Installing NPM
2019-09-06 06:47:43 +07:00
run: npm install
2019-09-06 07:05:52 +07:00
- name: Installing PHP
2019-09-06 06:47:43 +07:00
run: node lib/install.js
env:
php-version: ${{ matrix.php-versions }}
2019-09-07 19:31:50 +07:00
extension-csv: "mbstring, curl, mysqli, json, xml, xdebug, pcov, phpdbg"
- name: Testing
2019-09-09 07:11:17 +07:00
run: php -v && composer -V && php -m