Skip to content

Commit

Permalink
try all kind of ways to connect to nextcloud
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Neumann <artur@jankaritech.com>
  • Loading branch information
individual-it committed Dec 14, 2022
1 parent 6f43632 commit 8698ea8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,16 +155,19 @@ jobs:
run: curl http://localhost:8081/api/v3/users -u apiadmin:apiadmin

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

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

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

- name: try Nextcloud3
run: curl -k https://nextcloud:8080/status.php
run: curl -k https://nextcloud:8080/status.php || true

- name: try Nextcloud3
run: curl -k https://nextcloud/status.php || true

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

0 comments on commit 8698ea8

Please sign in to comment.