Skip to content

Add GitHub Actions

Add GitHub Actions #4

Workflow file for this run

name: Run Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
run-test:
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest ]
php-version:
- "7.1"
- "7.0"
- "5.6"
- "5.5"
- "5.4"
- "5.3"
name: PHP ${{ matrix.php-version }}
runs-on: ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php-version }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Setup PHP ${{ inputs.php_version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ inputs.php_version }}
- name: Run test
run: vendor/bin/phpunit