PHP Classes

File: .github/workflows/phpunit.yml

Recommend this page to a friend!
  Classes of Daniel Mullin   PHP Bookwhen API   .github/workflows/phpunit.yml   Download  
File: .github/workflows/phpunit.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Bookwhen API
Access booking information using the BookWhen API
Author: By
Last change:
Date: 1 year ago
Size: 852 bytes
 

Contents

Class file image Download
name: PHPUnit on: push: branches: [ "develop" ] pull_request: branches: [ "develop", "main" ] jobs: build-test: runs-on: ubuntu-latest steps: - name: Checkout Code uses: actions/checkout@v3 with: fetch-depth: 2 - name: Install composer and dependencies uses: php-actions/composer@v6 - name: PHPUnit Tests uses: php-actions/phpunit@v3 env: XDEBUG_MODE: coverage with: bootstrap: vendor/autoload.php configuration: phpunit.xml php_extensions: xdebug args: tests --coverage-clover coverage.xml - name: Scrutinizer run: ls -la && composer global require scrutinizer/ocular && ~/.composer/vendor/bin/ocular code-coverage:upload --format=php-clover coverage.xml shell: bash