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

Feature/chore add test prefer lowest wip (drop support of psr/log 1) #620

Closed
wants to merge 18 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: add ci tests for --prefer-lowest
  • Loading branch information
Chris8934 committed Apr 16, 2023
commit 3abcd3c48f73fb51f9dc02627bdcdaca5e1579e0
11 changes: 9 additions & 2 deletions .github/workflows/ci-3.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,20 @@ jobs:
strategy:
matrix:
# All the versions, OS, and dependency levels we want to support
php: [8.0, 8.1, 8.2]
dependency: [stable] # TODO: lowest
os: [ubuntu] # TODO: windows, macos
# Our code has paths for with- and without- XDebug, and we want to test
# both of them.
# @see https://xdebug.org/docs/all_settings#mode
xdebug3-mode: ["xdebug.mode=develop,coverage", "xdebug.mode=coverage"]
include:
- php: '8.0'
dependency: 'prefer-lowest'
- php: '8.0'
dependency: 'prefer-stable'
- php: '8.1'
dependency: 'prefer-stable'
- php: '8.2'
dependency: 'prefer-stable'

name: PHP ${{ matrix.php }} on ${{ matrix.os }}, ${{ matrix.dependency }} dependencies preferred
runs-on: ${{ matrix.os }}-latest
Expand Down