chore: fix ci deprecation, add testrun for PHP 8.3 #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- '*.x' | |
pull_request: | |
jobs: | |
tests: | |
if: "! contains(toJSON(github.event.commits.*.msg), 'skip') && ! contains(toJSON(github.event.commits.*.msg), 'ci')" #skip ci... | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ubuntu-22.04] | |
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] | |
include: | |
- operating-system: ubuntu-20.04 | |
php-versions: '7.1' | |
COMPOSER_FLAGS: '--prefer-stable --prefer-lowest' | |
PHPUNIT_FLAGS: '--coverage-clover build/coverage.xml' | |
name: PHP ${{ matrix.php-versions }} - ${{ matrix.operating-system }} | |
env: | |
extensions: curl json libxml dom | |
key: cache-v1 # can be any string, change to clear the extension cache. | |
steps: | |
# Checks out a copy of your repository on the ubuntu machine | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP Action | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: ${{ env.extensions }} | |
coverage: xdebug | |
tools: 'composer:v2, pecl' | |
- name: Install Composer dependencies | |
run: composer update ${{ matrix.COMPOSER_FLAGS }} --no-interaction | |
- name: boot test server | |
run: vendor/bin/http_test_server > /dev/null 2>&1 & | |
- name: Run tests | |
run: composer test |