Skip to content

Commit

Permalink
updated php version from 7.4 to 8.0 in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
passchn committed Jan 22, 2023
1 parent 8d50d0f commit aea3f58
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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 All @@ -125,4 +125,4 @@ jobs:
run: vendor/bin/phpstan analyse --error-format=github

- name: Run phpcs
run: composer cs-check
run: composer cs-check

0 comments on commit aea3f58

Please sign in to comment.