This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
linux (cuda, latest scheduled) #145
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: linux (cuda, latest scheduled) | |
on: | |
schedule: | |
- cron: "00 7 * * *" # runs at 07:00 UTC/12:00 PST every day | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ["3.9", "3.10", "3.11"] | |
cuda: ["11", "12"] | |
version: ["latest"] | |
dependencies: ["", "dev", "tutorials"] | |
uses: ./.github/workflows/linux_cuda.yaml | |
with: | |
python: ${{ matrix.python }} | |
cuda: ${{ matrix.cuda }} | |
version: ${{ matrix.version }} | |
dependencies: ${{ matrix.dependencies }} | |
secrets: inherit |