Create php.yml
This commit is contained in:
parent
70e1ef826e
commit
4f75f337be
1 changed files with 24 additions and 0 deletions
24
.github/workflows/php.yml
vendored
Normal file
24
.github/workflows/php.yml
vendored
Normal 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
|
Loading…
Reference in a new issue