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

52 lines
1.3 KiB
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:
2020-01-06 19:27:34 +00:00
- uses: actions/checkout@v2
2019-12-26 06:31:56 +00:00
- 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-31 00:07:55 +00:00
2020-01-06 20:24:27 +00:00
# Only patch code when it is a push event
2020-01-06 19:27:34 +00:00
- name: Push the changes
2020-01-06 20:24:27 +00:00
if: github.event_name == 'push'
2020-01-06 19:27:34 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.name "github-actions"
git config --global user.email "github-actions@users.noreply.github.com"
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
git add .
git commit -am "Github CI lint - phpcbf" || echo "No changes to commit"
2020-01-06 20:16:51 +00:00
git push
2020-01-06 19:27:34 +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