Skip to content

PHPUnit

PHPUnit #77

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- "**"
pull_request:
branches: [ "master" ]
schedule:
- cron: "0 1 * * *"
permissions:
contents: read
jobs:
standard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Composer Install
run: composer install --prefer-dist --no-progress
- name: PHPUnit
run: XDEBUG_MODE=coverage ./vendor/bin/phpunit