Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Run "Build and Test" every midnight PST / 8am UTC #186

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test PR
name: Build and Test

# Builds and tests on all combinations of OS and python version.
# Also builds the docs.
Expand All @@ -13,7 +13,10 @@ on:
inputs:
ref:
description: "The ref to build and test."
required: False
required: false
schedule:
# Run every night at midnight PST / 8am UTC, testing against the main branch.
- cron: '0 8 * * *'

defaults:
run:
Expand Down
Loading