Skip to content

Removed an outdated section #18

Removed an outdated section

Removed an outdated section #18

Workflow file for this run

name: PHPUnit Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.0, 7.1, 7.2, 7.3, 7.4]
steps:
- uses: actions/checkout@v1
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: pecl
extensions: trader
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: php vendor/bin/phpunit