Skip to content

doc: add curl example #7

doc: add curl example

doc: add curl example #7

Workflow file for this run

name: tests
on:
push:
branches: ["1.x"]
pull_request:
branches: ["1.x"]
jobs:
phpunit:
strategy:
matrix:
php-version: [7.2, 7.3, 7.4]
runs-on: ubuntu-latest
name: PHP ${{ matrix.php-version }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Run PHPUnit tests
run: ./vendor/bin/phpunit