Add regular schedule

Periodic test runs (once per week)
This commit is contained in:
felix.niederwanger@suse.com 2021-03-24 14:03:53 +01:00
parent 066110b622
commit 058852db2f
2 changed files with 7 additions and 5 deletions

View file

@ -42,8 +42,5 @@ fi
set -e
# If there are whitespace errors, print the offending file names and fail.
git diff-index --check --cached $against --
# Run yamllint on yaml files
yamllint defaults/*.yml handlers/*.yml meta/*.yml tasks/*.yml vars/*.yml
yamllint .

View file

@ -1,6 +1,11 @@
---
name: Test deployment
on: push
'on':
pull_request:
push:
schedule:
# Run every Wednesday at 01:42
- cron: "42 1 * * 3"
jobs:
lint: