Merge branch 'issue-794/add-gcs-support' of https://github.com/binxio/PrivateBin into binxio-issue-794/add-gcs-support

This commit is contained in:
El RIDO
2021-05-30 07:57:58 +02:00
12 changed files with 1021 additions and 10 deletions

View File

@@ -10,7 +10,9 @@ jobs:
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: /usr/bin/php7.4 $(which composer) install --prefer-dist --no-suggest
run: composer install --prefer-dist --no-suggest
- name: Install Google Cloud Storage
run: composer require google/cloud-storage
PHPunit:
runs-on: ubuntu-latest
strategy:
@@ -29,6 +31,8 @@ jobs:
run: rm composer.lock
- name: Setup PHPunit
run: composer install -n
- name: Install Google Cloud Storage
run: composer require google/cloud-storage
- name: Run unit tests
run: ../vendor/bin/phpunit --no-coverage
working-directory: tst