Skip to content

Commit

Permalink
workflows: set php version to 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
passchn committed Sep 21, 2023
1 parent 95065d5 commit 5165fcc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.1']
php-version: ['8.0']
db-type: ['sqlite', 'mysql', 'pgsql']
prefer-lowest: ['']
include:
- php-version: '7.4'
- php-version: '8.0'
db-type: 'sqlite'
prefer-lowest: 'prefer-lowest'

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
run: if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then vendor/bin/validate-prefer-lowest -m; fi

- name: Code Coverage Report
if: success() && matrix.php-version == '7.4' && matrix.db-type == 'sqlite'
if: success() && matrix.php-version == '8.0' && matrix.db-type == 'sqlite'
uses: codecov/codecov-action@v1

validation:
Expand All @@ -103,7 +103,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: '8.0'
extensions: mbstring, intl
coverage: none

Expand Down

0 comments on commit 5165fcc

Please sign in to comment.