Nightlies #103
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: Nightlies | |
on: | |
schedule: | |
- cron: "0 00 * * *" # 12am UTC, 5:30pm Indian, 9pm Brazil, 11am AEDT | |
workflow_dispatch: | |
inputs: | |
none: | |
description: "Run Nightlies Tests Manually" | |
required: false | |
jobs: | |
call-pr-tests-linting: | |
if: github.repository == 'OpenMined/PySyft' # don't run on forks | |
uses: OpenMined/PySyft/.github/workflows/pr-tests-linting.yml@dev | |
call-pr-tests-syft: | |
if: github.repository == 'OpenMined/PySyft' # don't run on forks | |
uses: OpenMined/PySyft/.github/workflows/pr-tests-syft.yml@dev | |
call-pr-tests-stack: | |
if: github.repository == 'OpenMined/PySyft' # don't run on forks | |
uses: OpenMined/PySyft/.github/workflows/pr-tests-stack.yml@dev | |
secrets: inherit | |
call-container-scan: | |
if: github.repository == 'OpenMined/PySyft' # don't run on forks | |
uses: OpenMined/PySyft/.github/workflows/container-scan.yml@dev | |
secrets: inherit | |
call-conda-install: | |
if: github.repository == 'OpenMined/PySyft' # don't run on forks | |
uses: OpenMined/PySyft/.github/workflows/conda-install.yml@dev | |
secrets: inherit |