Skip to content

Commit d4400ed

Browse files
authored
Merge pull request #15 from wdconinc/workflow-run-daily
Run workflows MacOS and Ubuntu daily
2 parents f762921 + 182ba14 commit d4400ed

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/macos.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: macOS
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: '33 3 * * *'
37
jobs:
48
macOS-minimal:
59
runs-on: ${{ matrix.os }}
610
strategy:
11+
fail-fast: false
712
matrix:
813
os: [macos-latest, macos-10.15, macos-11]
914
steps:

.github/workflows/ubuntu.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: ubuntu
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
pull_request:
5+
schedule:
6+
- cron: '44 4 * * *'
37
jobs:
48
build:
59
runs-on: ${{ matrix.os }}
610
strategy:
11+
fail-fast: false
712
matrix:
813
os: [ubuntu-latest, ubuntu-18.04, ubuntu-20.04]
914
steps:

0 commit comments

Comments
 (0)