Daily tests #277
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# https://docs.github.com/en/actions/using-workflows/reusing-workflows | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | |
name: Daily tests | |
# yamllint disable-line rule:truthy | |
on: | |
# To configure goto https://crontab.guru/ | |
schedule: | |
# daily at 00:00 UTC | |
- cron: '0 0 * * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
run-all-main-actions: | |
uses: ./.github/workflows/pull-request.yml | |
run-zephyr-builds: | |
uses: ./.github/workflows/zephyr.yml | |
sparse-zephyr: | |
uses: ./.github/workflows/sparse-zephyr.yml |