diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2022-04-26 17:28:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 17:28:51 +0200 |
commit | 036f871d01ed6903467861b0fa2b18d5f5ae4a0c (patch) | |
tree | f1472f74f483889b0321d779fb9875dd82ce46db /.github/workflows | |
parent | dffbddcca6fa0221b8f2ac138732cf01154a5187 (diff) | |
parent | 0e58c113a5e2740a900060123a1ca059a423bf7a (diff) | |
download | nextcloud-server-036f871d01ed6903467861b0fa2b18d5f5ae4a0c.tar.gz nextcloud-server-036f871d01ed6903467861b0fa2b18d5f5ae4a0c.zip |
Merge pull request #31492 from nextcloud/fix/check-secret-configured
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/s3-external.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/s3-external.yml b/.github/workflows/s3-external.yml index dedab6b0c16..8c2cdd7cfd1 100644 --- a/.github/workflows/s3-external.yml +++ b/.github/workflows/s3-external.yml @@ -55,7 +55,7 @@ jobs: php -S localhost:8080 & - name: PHPUnit run: | - echo "<?php return ['run' => true,'hostname' => 'localhost','key' => 'minio','secret' => 'minio123', 'bucket' => 'bucket', 'port' => 9000, 'use_ssl' => false, 'autocreate' => true, 'use_path_style' => true];" > apps/${{ env.APP_NAME }}/tests/config.amazons3.php + echo "<?php return ['run' => true, 'secret' => 'actually-not-secret', 'passwordsalt' => 'actually-not-secret', 'hostname' => 'localhost','key' => 'minio','secret' => 'minio123', 'bucket' => 'bucket', 'port' => 9000, 'use_ssl' => false, 'autocreate' => true, 'use_path_style' => true];" > apps/${{ env.APP_NAME }}/tests/config.amazons3.php phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/Amazons3Test.php phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/VersionedAmazonS3Test.php - name: S3 logs |