Skip to content

Add support to Custom Post Types and small bugfixes and improvements #28

Add support to Custom Post Types and small bugfixes and improvements

Add support to Custom Post Types and small bugfixes and improvements #28

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 --optimize-autoloader
- name: Run test suite
run: composer unit