PHP API now includes user agent string #61
Workflow file for this run
This file contains 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: 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 |