Skip to content

fix: resolve two obvious group name with ampersand issues #139

fix: resolve two obvious group name with ampersand issues

fix: resolve two obvious group name with ampersand issues #139

Workflow file for this run

name: php-unit-tests
# I am limiting the branches on which this workflow is run for a push so we
# don't run it multiple times when pushing fixes to comments on a PR. In
# principle we don't do pushes except to feature branches but there have been a
# few times we cherry picked onto a release and it's just a good idea to protect
# the main/master and develop branches in case of an accidental commit.
on:
push:
branches:
- 'main'
- 'develop'
- 'releases/**'
pull_request:
jobs:
run-php-unit-tests:
name: Run PHP Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: php-actions/composer@v5 # or alternative dependency management
- uses: php-actions/phpunit@v3
with:
php_version: "8.0"
version: "9"
configuration: ./phpunit.xml
memory_limit: 256M
testsuite: ci