Skip to content

Update Plugins_Factory_Test to actually test the factory #19

Update Plugins_Factory_Test to actually test the factory

Update Plugins_Factory_Test to actually test the factory #19

Workflow file for this run

name: run-phpunit-and-code-coverage
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: xdebug
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: composer unit
- name: Generate coverage report
run: composer coverage
env:
XDEBUG_MODE: coverage
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./coverage