From 7fd1f0ae312956ef545904a64b66adf29ace17ef Mon Sep 17 00:00:00 2001 From: downtownallday Date: Mon, 23 Aug 2021 11:40:22 -0400 Subject: [PATCH] Initial commit --- .github/workflows/run-tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/run-tests.yml diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 00000000..8c9a94cd --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,17 @@ +name: commit-tests +on: [push] +jobs: + # MiaB-LDAP connected to a remote Nextcloud + remote-nextcloud-docker: + runs-on: ubuntu-18.04 + container: + env: + - PRIMARY_HOSTNAME: box1.abc.com + - FEATURE_MUNIN: false + steps: + - uses: actions/checkout@v2 + - name: setup + run: tests/system-setup/remote-nextcloud-docker.sh upgrade basic + - name: test-runner + run: tests/runner.sh -dumpoutput -no-smtp-remote default remote-nextcloud upgrade-basic +