From d84800ec2c03167f468201de0969a88930b66416 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Wed, 30 Mar 2022 09:26:08 -0500 Subject: [PATCH 1/2] Run workflows MacOS and Ubuntu daily --- .github/workflows/macos.yml | 6 +++++- .github/workflows/ubuntu.yml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 4ece68f..d281cf1 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,5 +1,9 @@ name: macOS -on: [push, pull_request] +on: + push: + pull_request: + schedule: + - cron: '33 3 * * *' jobs: macOS-minimal: runs-on: ${{ matrix.os }} diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 3245198..4148647 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -1,5 +1,9 @@ name: ubuntu -on: [push, pull_request] +on: + push: + pull_request: + schedule: + - cron: '44 4 * * *' jobs: build: runs-on: ${{ matrix.os }} From 182ba14edc020c94c6f2be1cf64a1a7abb2fa3c7 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Wed, 30 Mar 2022 11:24:08 -0500 Subject: [PATCH 2/2] Workflows fail-fast false --- .github/workflows/macos.yml | 1 + .github/workflows/ubuntu.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index d281cf1..b03bd27 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -8,6 +8,7 @@ jobs: macOS-minimal: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [macos-latest, macos-10.15, macos-11] steps: diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 4148647..7486dba 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -8,6 +8,7 @@ jobs: build: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, ubuntu-18.04, ubuntu-20.04] steps: