2019-11-27 07:30:34 +07:00
|
|
|
# GitHub Action for roots/bedrock
|
|
|
|
name: Testing Bedrock
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
bedrock:
|
|
|
|
name: Bedrock (PHP ${{ matrix.php-versions }})
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
php-versions: ['7.1', '7.2', '7.3', '7.4']
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2020-01-02 00:06:25 +07:00
|
|
|
uses: actions/checkout@v2
|
2019-11-27 07:30:34 +07:00
|
|
|
- name: Setup PHP, with composer and extensions
|
2019-11-28 06:47:56 +07:00
|
|
|
uses: shivammathur/setup-php@v1 #https://github.com/shivammathur/setup-php
|
2019-11-27 07:30:34 +07:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
- name: Get composer cache directory
|
|
|
|
id: composer-cache
|
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
2019-12-28 01:53:51 +07:00
|
|
|
# Use composer.json for key, if composer.lock is not committed.
|
|
|
|
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
2019-11-27 07:30:34 +07:00
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
|
|
- name: Install Composer dependencies
|
|
|
|
run: composer install -n --prefer-dist
|
|
|
|
- name: PHP test
|
|
|
|
run: composer test
|