PHP Classes

File: .github/workflows/code-coverage.yml

Recommend this page to a friend!
  Packages of Michael Beck   XOOPS helpers   .github/workflows/code-coverage.yml   Download  
File: .github/workflows/code-coverage.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: XOOPS helpers
Helper class functions to use with XOOPS
Author: By
Last change:
Date: 11 days ago
Size: 841 bytes
 

Contents

Class file image Download
name: Code Coverage on: push: branches: [main, master] permissions: contents: read jobs: coverage: name: Coverage Report runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.3' extensions: mbstring, intl, zip coverage: xdebug - name: Install dependencies run: composer install --prefer-dist --no-interaction --no-progress - name: Generate coverage run: vendor/bin/phpunit --coverage-clover=coverage.xml - name: Upload to Codecov uses: codecov/codecov-action@v4 with: files: coverage.xml fail_ci_if_error: false env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}