Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Schedule GitHub workflows #26

Merged
merged 1 commit into from
Aug 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/bc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 0 * * *'

name: backwards compatibility
jobs:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 0 * * *'

name: build

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
on:
pull_request:
push:
branches:
- "master"
schedule:
- cron: '0 0 * * *'

name: mutation test

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
on:
- pull_request
- push
pull_request:
push:
schedule:
- cron: '0 0 * * *'

name: static analysis

Expand Down