fix: fix body in updateEvent
method always being sent as empty json
#404
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
tests: | |
name: "PHP ${{ matrix.php_version }}" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php_version: [ "8.1", "8.2", "8.3" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 | |
with: | |
php-version: "${{ matrix.php_version }}" | |
coverage: none | |
tools: composer:v2 | |
- name: Install Dependencies | |
run: composer install -q --profile --ignore-platform-reqs --no-interaction --no-ansi --no-scripts --no-suggest --prefer-dist | |
- uses: php-actions/phpunit@aed47a6852905dbd05b7c1a47c526b38fcc4bc17 | |
with: | |
php_version: "${{ matrix.php_version }}" | |
bootstrap: vendor/autoload.php | |
configuration: phpunit.xml.dist | |
args: --coverage-text | |
version: "8.5.33" |