Tests #1470
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: | |
pull_request: | |
push: | |
branches: | |
- master | |
- '[0-9]+.x' | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [ '8.0', 8.1, 8.2, 8.3 ] | |
stability: [ lowest, highest ] | |
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@2.31.1 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: xdebug | |
- name: Setup problem matchers for PHPUnit | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- if: matrix.php == '8.2' | |
name: Require packages for PHP 8.2 | |
run: composer require nesbot/carbon:^2.62.1 --no-update --dev | |
- if: matrix.php == '8.3' | |
name: Require packages for PHP 8.3 | |
run: composer require nesbot/carbon:^2.62.1 --no-update --dev | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
with: | |
dependency-versions: ${{ matrix.stability }} | |
- name: Execute tests | |
run: composer run-script test:phpunit -- --coverage-clover coverage.xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
continue-on-error: true | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload coverage to Code Climate | |
uses: paambaati/codeclimate-action@v9.0.0 | |
continue-on-error: true | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: ls | |
coverageLocations: ${{github.workspace}}/coverage.xml:clover |