mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
28 lines
624 B
YAML
28 lines
624 B
YAML
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
|
|
|
|
- name: Installing NPM
|
|
run: npm install
|
|
|
|
- name: Installing PHP
|
|
run: node lib/install.js
|
|
env:
|
|
php-version: ${{ matrix.php-versions }}
|