Create php.yml

This commit is contained in:
Sergio Brighenti 2020-04-15 00:15:45 +02:00 committed by GitHub
parent 70e1ef826e
commit 4f75f337be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
.github/workflows/php.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: vendor/bin/phpunit