Skip to content
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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@ name: ci

on:
push:
branches: [master] # PR branches run via pull_request; avoids double runs
pull_request:
schedule:
- cron: "20 3 * * *" # tier 2 nightly
workflow_dispatch:

# A new push to a branch cancels its still-running CI for the previous commit.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

jobs:
# Tier 1: no model assets — build matrix, fast tests, generated-file checks.
fast:
Expand Down
Loading