Merge pull request #515 from nextcloud/enh/noid/composer-check

check that all depenencies are installed
This commit is contained in:
blizzz 2021-02-16 15:12:10 +01:00 committed by GitHub
commit a0d48b20e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 0 deletions

27
.github/workflows/composer.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: composer check
on:
pull_request:
push:
branches:
- master
- stable*
jobs:
composer:
runs-on: ubuntu-latest
name: composer install check
steps:
- uses: actions/checkout@v2
- name: install dependencies
uses: php-actions/composer@v5
with:
php_version: 7.3
version: 1
args: -d ./3rdparty/
- name: ensure no changes
run: git diff-index HEAD