This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
Update composer.json #6
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: Run tests | |
on: | |
push: | |
branches: | |
# Only mainline branches, features etc are covered on the pull_request trigger | |
- 'my-stable' | |
pull_request: | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
name: Run tests | |
strategy: | |
fail-fast: false | |
matrix: | |
php_version: | |
- '7.4' | |
dependencies: | |
- 'default' | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
tools: composer:v2 | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer-${{ matrix.dependencies }} | |
- name: Install composer dependencies | |
env: | |
DEPENDENCIES: ${{ matrix.dependencies }} | |
run: | | |
if [ $DEPENDENCIES == 'lowest' ] | |
then | |
composer update --prefer-lowest --no-interaction --no-suggest --no-progress | |
else | |
composer install --no-interaction --no-suggest --no-progress | |
fi | |
- name: Run unit tests | |
run: | | |
cd tests | |
php run.php |