skip python 3.13t since conda doesn't support it yet #894
Workflow file for this run
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
# Scheduled validation of the nightly binaries | ||
name: validate-nightly-binaries | ||
on: | ||
schedule: | ||
# At 5:30 pm UTC (7:30 am PDT) | ||
- cron: "30 17 * * *" | ||
# Have the ability to trigger this job manually through the API | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- .github/workflows/validate-nightly-binaries.yml | ||
- .github/workflows/validate-binaries.yml | ||
- .github/scripts/validate-binaries.sh | ||
pull_request: | ||
paths: | ||
- .github/workflows/validate-nightly-binaries.yml | ||
- .github/workflows/validate-binaries.yml | ||
- .github/scripts/validate-binaries.sh | ||
jobs: | ||
nightly: | ||
uses: ./.github/workflows/validate-binaries.yml | ||
Check failure on line 24 in .github/workflows/validate-nightly-binaries.yml
|
||
with: | ||
channel: nightly |