Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add php 8.1 to CI + minor CI improvements #629

Merged
merged 3 commits into from Jul 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 17 additions & 6 deletions .github/workflows/test-package.yml
Expand Up @@ -8,17 +8,20 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ 5.5, 5.6, 7.0, 7.1, 7.2, 7.3, 7.4 ]
guzzle-version: [ '^5.3', '^6.0' ]
php-version: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4']
guzzle-version: ['^5.3', '^6.0']
include:
- php-version: 7.2
- php-version: '7.2'
guzzle-version: '^7.0'
- php-version: 7.3
- php-version: '7.3'
guzzle-version: '^7.0'
- php-version: 7.4
- php-version: '7.4'
guzzle-version: '^7.0'
- php-version: 8.0
- php-version: '8.0'
guzzle-version: '^7.0'
- php-version: '8.1'
guzzle-version: '^7.0'
composer-flags: '--ignore-platform-req php'

steps:
- uses: actions/checkout@v2
Expand All @@ -29,6 +32,14 @@ jobs:
php-version: ${{ matrix.php-version }}
coverage: none
extensions: intl, mbstring
# by default setup-php uses a production php.ini so force development values
ini-values: >-
zend.exception_ignore_args=Off,
zend.exception_string_param_max_len=15,
error_reporting=-1,
display_errors=On,
display_startup_errors=On,
zend.assertions=1

- run: composer validate

Expand Down