Skip to content

[CC-1377] add new paypage #212

[CC-1377] add new paypage

[CC-1377] add new paypage #212

Workflow file for this run

name: unit tests
on:
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
name: PHP ${{ matrix.php }} unit tests
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run unit tests
run: php ./vendor/bin/phpunit test/unit