Skip to content

Update coverage config #27

Update coverage config

Update coverage config #27

Workflow file for this run

name: Tests

Check failure on line 1 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

(Line: 74, Col: 11): Unrecognized named-value: 'secrets'. Located at position 52 within expression: matrix.php == '7.4' && matrix.setup == 'stable' && secrets.QLTY_COVERAGE_TOKEN != ''
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
setup: ['stable']
include:
- php: '7.0'
setup: 'lowest'
- php: '7.0'
setup: 'next'
- php: '8.5'
setup: 'lowest'
- php: '8.5'
setup: 'next'
name: PHP ${{ matrix.php }} - ${{ matrix.setup }}
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.json') }}
restore-keys: |
${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: |
${{ matrix.php >= 8.1 && 'composer require --no-update phpunit/phpunit:^8.5.14 --no-interaction' || '' }}
composer update --prefer-dist ${{ matrix.setup != 'next' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress --no-suggest ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }}
- name: Code Climate Test Reporter Preparation
if: matrix.php == '7.4' && matrix.setup == 'stable'
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter;
chmod +x ./cc-test-reporter;
./cc-test-reporter before-build;
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
- name: Run test suite
run: |
if [[ ${MATRIX_CONFIG} == "7.4-stable" ]]; then
vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml;
else
vendor/bin/phpunit --no-coverage;
fi;
env:
MATRIX_CONFIG: ${{ matrix.php }}-${{ matrix.setup }}
- name: Code Climate Test Reporter
if: ${{ matrix.php == '7.4' && matrix.setup == 'stable' && secrets.QLTY_COVERAGE_TOKEN != '' }}
uses: qltysh/qlty-action/coverage@v2
with:
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: clover.xml
- name: Coverage
if: matrix.php == '7.4' && matrix.setup == 'stable'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}