Skip to content

Commit d13a5e5

Browse files
committed
try all kind of ways to connect to nextcloud
Signed-off-by: Artur Neumann <[email protected]>
1 parent 6f43632 commit d13a5e5

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,16 +155,22 @@ jobs:
155155
run: curl http://localhost:8081/api/v3/users -u apiadmin:apiadmin
156156

157157
- name: try Nextcloud
158-
run: curl http://localhost:8080/status.php -v
158+
run: curl http://localhost:8080/status.php -v || true
159159

160160
- name: try Nextcloud
161-
run: curl https://localhost/status.php -v
161+
run: curl https://localhost/status.php -v || true
162162

163163
- name: try Nextcloud2
164-
run: curl http://nextcloud:8080/status.php -v
164+
run: curl http://nextcloud:8080/status.php -v || true
165165

166166
- name: try Nextcloud3
167-
run: curl -k https://nextcloud:8080/status.php
167+
run: curl -k https://nextcloud:8080/status.php || true
168+
169+
- name: try Nextcloud3
170+
run: curl -k https://nextcloud/status.php || true
171+
172+
- name: try Nextcloud4
173+
run: curl -k https://proxy/status.php || true
168174

169175
- name: JS Code Coverage Summary Report
170176
if: ${{ github.event_name == 'pull_request' && matrix.nextcloudVersion == 'master' && matrix.phpVersion == '7.4' }}

0 commit comments

Comments
 (0)