kylekatarnls/business-time

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.3']
        setup: ['stable']

    name: PHP ${{ matrix.php }}

    steps:
    - uses: actions/checkout@v2

    - name: Setup PHP
      uses: shivammathur/setup-php@v2
      with:
        php-version: ${{ matrix.php }}
        extensions: calendar
        tools: composer:v2
        coverage: xdebug

    - name: PHP >= 8.1 compatibility
      if: matrix.php >= 8.1
      run: composer require "phpunit/phpunit:^9.5.27" --no-update --no-interaction --dev

    - name: PHP >= 8.2 compatibility
      if: matrix.php >= 8.2
      run: composer require "nesbot/carbon:^2.62.1 || ^3" --no-update --no-interaction

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

    - name: Install dependencies
      if: steps.composer-cache.outputs.cache-hit != 'true'
      run: |
        composer update --prefer-dist ${{ matrix.setup != 'next' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress --no-suggest

    - 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: Run test suite with coverage
      run: vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml
      env:
        MATRIX_CONFIG: ${{ matrix.php }}-${{ matrix.setup }}

    - name: Code Climate Test Reporter
      run: ./cc-test-reporter after-build --exit-code 0;
      env:
        CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}

    - name: Coverage
      run: bash <(curl -s https://codecov.io/bash);