diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 4ece68f..b03bd27 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -1,9 +1,14 @@ name: macOS -on: [push, pull_request] +on: + push: + pull_request: + schedule: + - cron: '33 3 * * *' 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 3245198..7486dba 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -1,9 +1,14 @@ name: ubuntu -on: [push, pull_request] +on: + push: + pull_request: + schedule: + - cron: '44 4 * * *' jobs: build: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, ubuntu-18.04, ubuntu-20.04] steps: