Skip to content

v3.x: add new webhooks #2

v3.x: add new webhooks

v3.x: add new webhooks #2

Workflow file for this run

name: Run PHPUnit Tests
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
run_tests:
name: Run PHPUnit Tests
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [ 8.2 ]
branch: [ master ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
- name: Install Composer dependencies
run: composer install -q --no-scripts --prefer-dist
- name: Run PHPUnit tests
run: vendor/bin/phpunit tests