Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable PHP 8 in workflows
Browse files Browse the repository at this point in the history
MGatner committed Nov 30, 2020

Verified

This commit was signed with the committer’s verified signature.
MGatner MGatner
1 parent 731478d commit 654f6e4
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test-phpstan.yml
Original file line number Diff line number Diff line change
@@ -20,16 +20,20 @@ on:

jobs:
build:
name: Analyze code (PHPStan)
name: PHP ${{ matrix.php-versions }} Analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: ${{ matrix.php-versions }}
extensions: intl

- name: Use latest Composer
2 changes: 1 addition & 1 deletion .github/workflows/test-phpunit.yml
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0']
db-platforms: ['MySQLi', 'Postgre', 'SQLite3', 'Sqlsrv']

services:

0 comments on commit 654f6e4

Please sign in to comment.