2019-12-26 07:31:04 +00:00
|
|
|
name: Composer
|
2019-12-26 06:31:56 +00:00
|
|
|
|
2019-12-26 10:29:46 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '**'
|
2019-12-26 06:31:56 +00:00
|
|
|
|
|
|
|
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-30 23:45:08 +00:00
|
|
|
# Bypass the phpcbf non-standard exit code
|
|
|
|
- name: Run composer fix
|
2019-12-30 23:23:01 +00:00
|
|
|
run: |
|
2019-12-30 23:47:04 +00:00
|
|
|
sh ./bin/phpcbf.sh
|
2019-12-30 23:23:01 +00:00
|
|
|
composer fix
|
2019-12-30 23:45:08 +00:00
|
|
|
|
|
|
|
- name: Run Composer test
|
|
|
|
run: composer test
|
2019-12-30 23:02:17 +00:00
|
|
|
|
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
|