Skip to content

PHP API now includes user agent string #61

PHP API now includes user agent string

PHP API now includes user agent string #61

Workflow file for this run

name: PHP CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: PHP CI - test
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.0, 8.1, 8.2]
steps:
- name: Install additional packages
run: sudo apt-get install -y stunnel
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@86e1ccdd8ddc47bffc29bf667143f363a4cdfdbc
with:
php-version: ${{ matrix.php }}
coverage: xdebug
- name: Composer install
run: composer install
- name: PHP tests
run: ./vendor/bin/phpunit