Skip to content

Commit

Permalink
Test under additional PHP versions (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmai authored Sep 21, 2021
1 parent 322b318 commit e022690
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['7.3', '7.4', '8.0']
php-version: ['7.2', '7.3', '7.4', '8.0', '8.1']
coverage: ['pcov']
include:
- { php-version: '7.1', coverage: 'xdebug' }

name: Test with PHP ${{ matrix.php-version }}

Expand All @@ -28,7 +31,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
coverage: ${{ matrix.coverage }}
tools: composer:v2

- name: Validate composer.json
Expand Down

0 comments on commit e022690

Please sign in to comment.