From 987899132c9276ecbba274328d4b3c8c5d756b32 Mon Sep 17 00:00:00 2001 From: ilammy Date: Tue, 11 Feb 2020 23:23:22 +0200 Subject: [PATCH] Run test job at 06:00 every day Well, it seems the environment is changing so we'd better run the tests reguarly to see whether something breaks in a timely manner. GitHub Actions also don't offer other Windows environments now, only windows-latest is available. Reduce test matrix to only that. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fb70fea..1aca9e3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,15 +6,15 @@ on: branches: - master - release/* + schedule: + - cron: '0 6 * * *' jobs: test: name: default - runs-on: ${{ matrix.os }} + runs-on: windows-latest strategy: fail-fast: false - matrix: - os: [windows-2016, windows-2019, windows-latest] steps: - name: Check out source code uses: actions/checkout@v1