Live Endpoint Test #626
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: Live Endpoint Test | |
on: | |
schedule: | |
- cron: "30 12 * * *" # Run at 8:30 AM EST (Morning Rush Hour) | |
- cron: "15 21 * * *" # Run at 5:15 PM EST (Evening Rust Hour) | |
- cron: "00 07 * * *" # Run at 3:00 AM EST (Dead of the night) | |
workflow_dispatch: | |
jobs: | |
live-endpoint: | |
name: Live Endpoint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
with: | |
lfs: false | |
- name: Install Rust Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Setup Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Display Rust Toolchain Information | |
run: | | |
cargo --version --verbose | |
rustc --version | |
- name: Live Endpoint Test | |
run: | | |
cargo check | |
cargo test --verbose --test live_endpoint_canary |