[wip] added composer deployment file

pull/255/head
Cédric Bonhomme 2019-12-16 15:20:22 +01:00
parent efaec51ff2
commit 5501cb9a54
No known key found for this signature in database
GPG Key ID: A1CB94DE57B7A70D
1 changed files with 24 additions and 0 deletions

24
.github/workflows/php.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: PHP Composer
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
# 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