setup-php/examples/bedrock.yml

32 lines
1.2 KiB
YAML
Raw Normal View History

# 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
- name: Setup PHP, with composer and extensions
2020-02-14 14:15:46 +07:00
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
- name: Get composer cache directory
2020-06-19 05:56:37 +07:00
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2020-05-30 12:57:44 +07:00
- uses: actions/cache@v2
with:
2020-06-19 05:56:37 +07:00
path: ${{ steps.composercache.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') }}
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