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

28 lines
624 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:
max-parallel: 15
matrix:
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3']
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 }}