mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
Merge pull request #656 from fabio-ivona/scheduled-workflows
[workflows] add scheduled runs
This commit is contained in:
6
.github/workflows/static.yml
vendored
6
.github/workflows/static.yml
vendored
@ -1,6 +1,10 @@
|
|||||||
name: Static Analysis
|
name: Static Analysis
|
||||||
|
|
||||||
on: ['push', 'pull_request']
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
static:
|
static:
|
||||||
|
|||||||
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
@ -1,6 +1,11 @@
|
|||||||
name: Tests
|
name: Tests
|
||||||
|
|
||||||
on: ['push', 'pull_request']
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
|
|||||||
Reference in New Issue
Block a user