2019-12-26 07:31:04 +00:00
|
|
|
name: Composer
|
2019-12-26 06:31:56 +00:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
|
|
run: composer validate
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: composer install --prefer-dist --no-progress --no-suggest
|
|
|
|
|
2019-12-26 06:35:52 +00:00
|
|
|
- name: Composer test
|
|
|
|
run: composer test
|
2019-12-26 06:31:56 +00:00
|
|
|
|
|
|
|
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
|
|
|
|
# Docs: https://getcomposer.org/doc/articles/scripts.md
|
|
|
|
|
|
|
|
# - name: Run test suite
|
|
|
|
# run: composer run-script test
|