Merge pull request #47 from PHPDevsr/dependabot/composer/rector/recto… #84
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: | |
pull_request: | |
branches: | |
- 'dev' | |
paths: | |
- '**.php' | |
- 'composer.*' | |
- 'phpunit*' | |
- '.github/workflows/test-phpunit.yml' | |
push: | |
branches: | |
- 'dev' | |
paths: | |
- '**.php' | |
- 'composer.*' | |
- 'phpunit*' | |
- '.github/workflows/test-phpunit.yml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
main: | |
name: PHP ${{ matrix.php-versions }} Unit Tests | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
strategy: | |
matrix: | |
php-versions: ['7.4', '8.0', '8.1', '8.2'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: composer, phpunit | |
extensions: intl, json, mbstring, gd, xdebug, xml | |
coverage: xdebug | |
env: | |
COMPOSER_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@v4 | |
with: | |
path: ${{ env.COMPOSER_CACHE_FILES_DIR }} | |
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.php-version }}- | |
${{ runner.os }}- | |
- name: Install Dependencies | |
run: | | |
if [ -f composer.lock ]; then | |
composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
else | |
composer update --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
fi | |
- name: Test with PHPUnit | |
run: vendor/bin/phpunit --verbose --coverage-text --coverage-clover build/logs/clover.xml --coverage-php build/cov/coverage.cov --testsuite main | |
env: | |
TERM: xterm-256color | |
TACHYCARDIA_MONITOR_GA: enabled | |
- if: matrix.php-versions == '8.1' | |
name: Merge Coveralls | |
continue-on-error: true | |
run: | | |
vendor/bin/phpcov merge --clover build/logs/clover.xml build/cov | |
- if: matrix.php-versions == '8.1' | |
name: Run Coveralls | |
run: | | |
vendor/bin/php-coveralls --verbose --exclude-no-stmt --ansi | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_PARALLEL: true | |
COVERALLS_FLAG_NAME: PHP ${{ matrix.php-versions }} | |
coveralls: | |
needs: [main] | |
name: Coveralls Finished | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload Coveralls results | |
uses: coverallsapp/github-action@master | |
continue-on-error: true | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |