Fix/Skip tests and add php 8.2 and 8.3. #71
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: "Continuous Integration" | |
on: | |
push: | |
paths-ignore: | |
- 'doc/**' | |
- '.github/**' | |
pull_request: | |
paths-ignore: | |
- 'doc/**' | |
- '.github/**' | |
jobs: | |
phpunit: | |
name: PHP ${{ matrix.php-version }} (${{ matrix.dependency-version }}) | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
dependency-version: [prefer-lowest, prefer-stable] | |
experimental: [false] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP with PECL extension | |
uses: shivammathur/[email protected] | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: composer:v2 | |
coverage: pcov | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache Composer packages | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-php-${{ matrix.php-version }}- | |
- name: Install dependencies (PHP 8) | |
if: steps.composer-cache.outputs.cache-hit != 'true' && matrix.php-version >= 8 | |
run: composer update --${{ matrix.dependency-version }} --ignore-platform-req=php --no-progress --no-interaction | |
- name: Pull the docker image used by the tests. | |
run: docker pull busybox:latest | |
- name: Run PHPUnit test suite | |
run: composer run-script test-ci | |
- name: Publish code coverage | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: composer run-script test-coverage | |
coverageLocations: | | |
${{github.workspace}}/clover.xml:clover | |
if: github.event_name != 'pull_request' |