Skip to content

Commit

Permalink
Add back test matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
anderly committed Aug 11, 2023
1 parent c0a0f50 commit 3f9a233
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2']
steps:
- uses: actions/checkout@v3
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Check PHP Version
run: php -v
- uses: php-actions/composer@v6
- run: echo "Composer dependencies have been installed"
- run: vendor/bin/phpunit
- name: Run Tests
run: vendor/bin/phpunit

0 comments on commit 3f9a233

Please sign in to comment.