Skip to content

Commit

Permalink
Merge a2e45ab into ebda290
Browse files Browse the repository at this point in the history
  • Loading branch information
gpupo committed May 7, 2020
2 parents ebda290 + a2e45ab commit 3a3328a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Phpunit
on:
pull_request:
branches:
- master
paths-ignore:
- '**.md'
push:
branches:
- master
paths-ignore:
- '**.md'
jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.4']
steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Validate composer.json
run: composer validate

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

- name: Run test suite
run: vendor/bin/phpunit

0 comments on commit 3a3328a

Please sign in to comment.