Daily test (self-hosted, CUDA) #391
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
# This is a workflow that should run daily | |
name: Daily test (self-hosted, CUDA) | |
# Controls when the action will run. | |
on: | |
schedule: | |
- cron: '00 19 * * *' # run at 19:00 UTC daily | |
# This workflow calls the test_gpu.yaml workflow passing the default | |
# branches as inputs. The cron workflow will not run on forks. | |
jobs: | |
run-tests-cron-gpu: | |
if: github.repository == 'xsuite/xsuite' | |
uses: ./.github/workflows/test_sh.yaml | |
with: | |
test_contexts: 'ContextCupy' | |
platform: 'ubuntu' |