Skip to content

Commit

Permalink
Update testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Aug 19, 2020
1 parent 374d70e commit 5ea4175
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
php: [7.4, 7.3, 7.2]
release: [stable, lowest]
include:
include:
- php: 7.4
release: stable
release: stable
coverage: xdebug

steps:
- uses: actions/checkout@v1
- uses: actions/cache@v1
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.composer/cache/files
key: php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
- uses: shivammathur/setup-php@v1
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: bcmath, ctype, json, mbstring, openssl, pdo, pdo_sqlite, tokenizer, xml
Expand Down

0 comments on commit 5ea4175

Please sign in to comment.