Update php.yml

This commit is contained in:
Barbara-Pitt 2020-12-27 03:33:14 -06:00 committed by GitHub
parent 752ebbe3e2
commit a4396ff9fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 22 deletions

View File

@ -8,9 +8,17 @@ on:
jobs:
build:
strategy:
matrix:
php: ['5.6.40']
os: ['ubuntu-16.04']
include:
- php: '5.6.40'
os: 'ubuntu-16.04'
runs-on: ubuntu-16.04
runs-on: ${{ matrix.os }}
env:
PHP_VERSION: ${{ matrix.php }}
steps:
- uses: actions/checkout@v2