Call endpoint with CMS reference #62
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PHPUnit Coverage Report | |
on: | |
push: | |
branches: [develop, master] | |
pull_request: | |
branches: [develop, master] | |
workflow_dispatch: ~ | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: ./ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 5.6 | |
tools: composer:v1 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Ensure source code is linted | |
run: ./vendor/bin/phpcs src | |
- name: PHPUnit | |
run: ./vendor/bin/phpunit -c phpunit.ci.xml --coverage-xml ./.coverage | |
env: | |
XDEBUG_MODE: coverage | |
- name: PHPUnit threshold | |
run: php ./phpunit-threshold.php |