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.
This commit is contained in:
ilammy
2020-02-11 23:23:22 +02:00
parent 89d8017608
commit 987899132c
+3 -3
View File
@@ -6,15 +6,15 @@ on:
branches: branches:
- master - master
- release/* - release/*
schedule:
- cron: '0 6 * * *'
jobs: jobs:
test: test:
name: default name: default
runs-on: ${{ matrix.os }} runs-on: windows-latest
strategy: strategy:
fail-fast: false fail-fast: false
matrix:
os: [windows-2016, windows-2019, windows-latest]
steps: steps:
- name: Check out source code - name: Check out source code
uses: actions/checkout@v1 uses: actions/checkout@v1