From 00f345ad98555568d064c9565ef43b4e9793bd7b Mon Sep 17 00:00:00 2001 From: Sander Bruens Date: Tue, 23 Jul 2024 14:28:42 -0400 Subject: [PATCH] ci(server): run CI job daily so we catch issues with runner changes (#1567) * ci(server): run CI job daily so we catch issues with runner changes * Format. --- .github/workflows/build_and_test_debug.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test_debug.yml b/.github/workflows/build_and_test_debug.yml index cbe321a6..0b072c1f 100644 --- a/.github/workflows/build_and_test_debug.yml +++ b/.github/workflows/build_and_test_debug.yml @@ -12,6 +12,8 @@ on: push: branches: - master + schedule: + - cron: "0 13 * * *" # Run daily at 1PM UTC. jobs: lint: @@ -65,10 +67,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2.3.4 - + - name: Install Outline Server run: ./src/server_manager/install_scripts/install_server.sh --hostname localhost - + - name: Test API run: 'curl --silent --fail --insecure $(grep "apiUrl" /opt/outline/access.txt | cut -d: -f 2-)/server'