ci: run builds periodically

Without big development activity, thus workflows triggered on changes,
CI builds might never run.  In the same time distros actually change, so
things can get be broken due to external (distro) reasons.  This is
especially true for development versions, like Debian testing.

Run at least once per week, to be sure everything still builds even
without development activity.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
This commit is contained in:
Krzysztof Kozlowski
2023-07-13 14:51:43 +02:00
parent 62d67fc81e
commit 04f83b65f2

View File

@@ -9,7 +9,13 @@
# https://github.com/linux-nfc/neard
#
name: "Builds"
on: [push, pull_request, workflow_dispatch]
on:
pull_request:
push:
schedule:
# Run at 1:01 PM, every Tuesday
- cron: '1 13 * * 2'
workflow_dispatch:
jobs:
job: