1
0
Fork 0
mirror of synced 2024-04-29 10:03:00 +12:00

Add weekly scheduled workflow tasks

This commit is contained in:
Rafał Mikrut 2021-11-20 09:49:03 +01:00
parent 418ad73327
commit 7bbdf74273
4 changed files with 20 additions and 4 deletions

View file

@ -1,5 +1,9 @@
name: 🐧 Linux
on: [ push, pull_request ]
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 2'
env:
CARGO_TERM_COLOR: always

View file

@ -1,5 +1,9 @@
name: 🍎 MacOS
on: [ push, pull_request ]
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 2'
env:
CARGO_TERM_COLOR: always

View file

@ -1,5 +1,9 @@
name: Quality
on: [ push, pull_request ]
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 2'
env:
CARGO_TERM_COLOR: always

View file

@ -1,5 +1,9 @@
name: 🏁 Windows
on: [ push, pull_request ]
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 2'
env:
CARGO_TERM_COLOR: always