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 2ebb513 commit c237bf0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
php: [7.4, 7.3, 7.2]
database: [mysql, pgsql, sqlite, sqlsrv]
release: [stable, lowest]
include:
include:
- php: 7.4
release: stable
release: stable
coverage: xdebug

services:
mysql:
image: mysql:5.7
Expand All @@ -34,12 +34,12 @@ jobs:
- 5432/tcp

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 }}
tools: pecl
Expand Down

0 comments on commit c237bf0

Please sign in to comment.