Support CI 4.4.0 #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: PHPUnit | |
on: | |
push: | |
branches: | |
- 1.x | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- composer.json | |
- phpunit.xml | |
pull_request: | |
branches: | |
- 1.x | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- composer.json | |
- phpunit.xml | |
- '.github/workflows/**' | |
workflow_dispatch: | |
jobs: | |
phpunit: | |
name: PHPUnit | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
operating-system: | |
- ubuntu-latest | |
php-version: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
dependencies: | |
- lowest | |
- highest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: pcov | |
ini-values: zend.assertions=1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get composer cache directory | |
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.COMPOSER_CACHE_FILES_DIR }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install lowest dependencies | |
if: ${{ matrix.dependencies == 'lowest' }} | |
run: | | |
composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} | |
composer update --prefer-lowest --no-interaction --no-progress | |
- name: Install highest dependencies | |
if: ${{ matrix.dependencies == 'highest' }} | |
run: | | |
composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} | |
composer update --no-interaction --no-progress | |
- name: Run test suite | |
run: ./vendor/bin/phpunit --coverage-clover=coverage.xml --coverage-text | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./coverage.xml |