Skip to content

Commit

Permalink
Updated CI to run against PHP 5.6 - 7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Cameron Hall committed Feb 7, 2020
1 parent aae8da7 commit 6443464
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/continuous-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
- '**.css'
- '**.tpl'
- '**.txt'
- '**.yml'
- '**.md'
pull_request:
paths-ignore:
Expand All @@ -21,9 +20,26 @@ on:
name: Tests

jobs:
build:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
name: PHP ${{ matrix.php-versions }} Test
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
coverage: none
extensions: soap
tools: composer, phpcs, phpunit:5.7.27

- name: Check style/syntax
run: phpcs

- name: Run tests
run: make test
run: phpunit

0 comments on commit 6443464

Please sign in to comment.