mediawiki-skins-Citizen/.github/workflows/composer.yml

44 lines
952 B
YAML
Raw Normal View History

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:02:17 +00:00
- name: Run Composer test
2019-12-26 06:35:52 +00:00
run: composer test
2019-12-30 23:02:17 +00:00
- name: Attempt to auto fix the issues
if: failure()
run: composer fix
2019-12-30 23:23:01 +00:00
# Use failure() because phpcbf always return a failure
- name: Re-run the auto fix and verify if the issues are resolved
2019-12-30 23:02:17 +00:00
if: failure()
2019-12-30 23:23:01 +00:00
run: |
composer fix
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