Skip to content

Merge pull request #124 from derrabus/bugfix/allow-httpful-1 #47

Merge pull request #124 from derrabus/bugfix/allow-httpful-1

Merge pull request #124 from derrabus/bugfix/allow-httpful-1 #47

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
defaults:
run:
shell: bash
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
php-versions: ['7.3', '7.4']
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- run: composer install
- run: vendor/phpunit/phpunit/phpunit --configuration tests/phpunit.xml