Skip to content

Commit

Permalink
add github actions build
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Jan 23, 2021
1 parent b0c73e4 commit 7dbf0a5
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: "Build"

on:
pull_request:
types: [ "opened", "synchronize", "edited", "reopened" ]
push:
branches:
- master
- v*.*

env:
php-extensions: mbstring, intl
php-extensions-key: v1
php-tools: "composer:v2"

jobs:
tests:
name: Tests

strategy:
fail-fast: false
matrix:
php-version: [ '7.1', '7.2', '7.3', '7.4', '8.0' ]

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup PHP with pecl extension
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: ${{ env.php-extensions }}
tools: ${{ env.php-tools }}
coverage: pcov

- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('composer.json') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-progress --no-suggest

- name: Tests
run: ./vendor/bin/tester ./tests/cases

- name: Print failed expectations
if: ${{ failure() }}
run: |
find tests -name \*.actual -exec echo "--- {}" \; -exec cat {} \; -exec echo \; -exec echo \; && \
find tests -name \*.log -exec echo "--- {}" \; -exec cat {} \; -exec echo \; -exec echo \;

0 comments on commit 7dbf0a5

Please sign in to comment.