nonreg-tests #300
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
name: nonreg-tests | |
on: | |
# Activate the workflow at each push on main branch | |
push: | |
branches: [ main ] | |
# Activate the workflow at each pull request on main branch | |
pull_request: | |
branches: [ main ] | |
# Activate the workflow every day at 23:30 UTC = for Paris 00:30 (summer) or 01:30 (winter) | |
schedule: | |
# * is a special character in YAML so you have to quote the string | |
- cron: '30 23 * * *' | |
# Permit manual trigger | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Manual' | |
required: false | |
default: '' | |
jobs: | |
call-macos-latest: | |
uses: ./.github/workflows/nonreg-tests_macos-latest.yml | |
call-windows-latest-msvc: | |
uses: ./.github/workflows/nonreg-tests_windows-latest-msvc.yml | |
call-windows-latest-rtools: | |
uses: ./.github/workflows/nonreg-tests_windows-latest-rtools.yml | |
call-ubuntu-latest: | |
uses: ./.github/workflows/nonreg-tests_ubuntu-latest.yml |