Bump actions/checkout from 3.3.0 to 3.5.2 #195
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: | |
- main | |
pull_request: | |
jobs: | |
tests: | |
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }} w/ ${{ matrix.dependencies }} | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.php-versions == '8.3' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php-versions: ['8.1', '8.2', '8.3'] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
dependencies: ['install', 'update --prefer-lowest', 'update'] | |
steps: | |
- name: Configure git | |
if: runner.os == 'Windows' | |
run: git config --system core.autocrlf false; git config --system core.eol lf | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up PHP ${{ matrix.php-versions }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring | |
coverage: xdebug | |
- name: Setup Problem Matchers for PHP | |
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
- name: Setup Problem Matchers for PHPUnit | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Get Composer Cache Directory | |
if: runner.os != 'Windows' | |
id: composer-cache | |
run: echo "value=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
if: runner.os != 'Windows' | |
uses: actions/[email protected] | |
with: | |
path: ${{ steps.composer-cache.outputs.value }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer ${{ matrix.dependencies }} --prefer-dist --no-progress --no-suggest | |
- name: Run test suite | |
run: composer run-script test -- --coverage-text | |
# Deactivated until the reason for "Couldn't find a repository matching this job." error is found. | |
# - name: Notify Coveralls | |
# if: matrix.php-versions == '7.3' && runner.os == 'Linux' && matrix.dependencies == 'install' | |
# env: | |
# COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
# run: | | |
# composer require php-coveralls/php-coveralls | |
# composer run-script php-coveralls -- --verbose |