phug-php/phug

View on GitHub
.github/workflows/coverage.yml

Summary

Maintainability
Test Coverage
name: Coverage

on:
  push:
    branches: [ '**' ]
  pull_request:
    branches: [ '**' ]

jobs:
  test:
    runs-on: ubuntu-latest

    strategy:
      fail-fast: false
      matrix:
        php: ['8.2']
        setup: ['stable']

    name: PHP

    steps:
    - uses: actions/checkout@v2

    - name: Setup PHP
      uses: shivammathur/setup-php@v2
      with:
        php-version: ${{ matrix.php }}
        ini-values: memory_limit=-1, zend.enable_gc=0, xdebug.mode="coverage,develop"
        tools: composer:v2
        extensions: pcntl
        coverage: xdebug

    - name: Cache Composer packages
      id: composer-cache
      uses: actions/cache@v2
      with:
        path: vendor
        key: ${{ runner.os }}-${{ matrix.setup }}-coverage-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
        restore-keys: |
          ${{ runner.os }}-${{ matrix.setup }}-coverage-${{ matrix.php }}-

    - name: Code Climate Test Reporter Preparation
      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: Install dependencies
      if: steps.composer-cache.outputs.cache-hit != 'true'
      run: |
        composer config version 1.9.0
        composer require --no-update phpunit/phpunit:^9.6.12 phpunit/php-code-coverage:^9.2.28 --dev --no-interaction
        composer update --prefer-dist ${{ matrix.setup != 'next' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress --no-interaction

    - name: Run test suite
      run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml --default-time-limit=3

    - name: Code Climate Test Reporter
      if: ${{ env.CC_TEST_REPORTER_ID != '' }}
      run: |
        cp coverage.xml clover.xml
        bash <(curl -s https://codecov.io/bash)
        ./cc-test-reporter after-build --coverage-input-type clover --exit-code 0
        composer config version 1.9.0
      #  composer require codacy/coverage
      #  vendor/bin/codacycoverage clover coverage.xml
      env:
        CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
      #  CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}