From 3648fdda3ba17b32cbae9558e3c487669acf1dfd Mon Sep 17 00:00:00 2001 From: Lev Brouk Date: Tue, 30 Apr 2024 05:56:52 -0700 Subject: [PATCH] [CI only]: Nightly test server main, latest release --- .github/workflows/on-nightly.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/on-nightly.yml diff --git a/.github/workflows/on-nightly.yml b/.github/workflows/on-nightly.yml new file mode 100644 index 000000000..17654d5e8 --- /dev/null +++ b/.github/workflows/on-nightly.yml @@ -0,0 +1,23 @@ +name: "Nightly" +on: + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '37 4 * * *' + +permissions: + contents: write # required by build-test to comment on coverage but not used here. + +defaults: + run: + shell: bash --noprofile --norc -x -eo pipefail {0} + +jobs: + quick: + name: "DefaultR" + strategy: + fail-fast: false + matrix: + server_version: [main, latest] + uses: ./.github/workflows/build-test.yml + with: + server_version: ${{ matrix.server_version }}