Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
php-version: 'latest'
coverage: none
tools: cs2pr

Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ jobs:
- '7.3'
- '7.4'
- '8.0'
# PHP 8.1 is tested in coverage section
- '8.1'
# PHP 8.2 is tested in coverage section
experimental: [false]

include:
- php: '8.2'
- php: '8.3'
experimental: true

name: "Test on PHP ${{ matrix.php }}"
Expand Down Expand Up @@ -79,7 +80,7 @@ jobs:
matrix:
include:
- php: 5.3
- php: 8.1
- php: 8.2
name: "Coverage on PHP ${{ matrix.php }}"
steps:
- name: Checkout code
Expand Down Expand Up @@ -129,7 +130,7 @@ jobs:
# Global installing is used for compatibility with composer.lock in PHP 5.3
- name: Install Coveralls
if: ${{ success() }}
run: composer global require php-coveralls/php-coveralls:"^2.4.2" --no-interaction
run: composer global require php-coveralls/php-coveralls:"^2.5.3" --no-interaction

- name: Upload coverage results to Coveralls
if: ${{ success() }}
Expand Down