Skip to content

The company publishes content to the customer circle of friends , Upl… #1554

The company publishes content to the customer circle of friends , Upl…

The company publishes content to the customer circle of friends , Upl… #1554

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
phpunit:
name: PHP-${{ matrix.php_version }}-${{ matrix.perfer }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php_version:
- 7.2
- 7.3
- 7.4
perfer:
- stable
- lowest
container:
image: nauxliu/php-ci-image:${{ matrix.php_version }}
steps:
- uses: actions/checkout@master
- name: Install Dependencies
run: composer update --prefer-dist --no-interaction --no-suggest --prefer-${{ matrix.perfer }}
- name: Run PHPUnit
run: ./vendor/bin/phpunit