Skip to content

Merge pull request #11 from inxy-payments/v2.x_add-life-time #4

Merge pull request #11 from inxy-payments/v2.x_add-life-time

Merge pull request #11 from inxy-payments/v2.x_add-life-time #4

Workflow file for this run

name: Run PHPUnit Tests
on:
pull_request:
branches:
- "v2.x"
push:
branches:
- "v2.x"
jobs:
run_tests:
name: Run PHPUnit Tests
runs-on: ubuntu-latest
strategy:
matrix:
php_version: [ 7.0 ]
branch: [ v2.x ]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_version }}
- name: Install Composer dependencies
run: composer install -q --no-scripts --prefer-dist
- name: Run PHPUnit tests
run: vendor/bin/phpunit tests