Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki authored Nov 20, 2020
1 parent 49b4994 commit f6c4a54
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.2', '7.3', '7.4']
laravel: ['6.*', '7.*', '8.*']
prefer: ['prefer-lowest', 'prefer-stable']
php:
- '7.3'
- '7.4'
- '8.0'
laravel:
- 7.*
- 8.*
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
- laravel: '6.*'
testbench: '4.*'
- laravel: '7.*'
testbench: '5.*'
- laravel: '8.*'
Expand All @@ -31,6 +36,13 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: pcov

- uses: actions/cache@v1
name: Cache dependencies
with:
Expand All @@ -44,7 +56,7 @@ jobs:
- name: Run tests
run: |
phpunit --coverage-text --coverage-clover=coverage.xml
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
- uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit f6c4a54

Please sign in to comment.