2026-07-21 11:10:20 -05:00
|
|
|
when:
|
|
|
|
|
- event: push
|
|
|
|
|
- event: pull_request
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
validate:
|
|
|
|
|
image: rust:1.95
|
|
|
|
|
commands:
|
2026-07-21 13:14:52 -05:00
|
|
|
- apt-get update && apt-get install -y python3
|
2026-07-21 11:10:20 -05:00
|
|
|
- rustc --version
|
|
|
|
|
- cargo --version
|
|
|
|
|
- scripts/precommit-check.sh
|
2026-07-22 09:13:54 -05:00
|
|
|
|
|
|
|
|
deploy_training_data:
|
|
|
|
|
image: rust:1.95
|
|
|
|
|
commands:
|
|
|
|
|
- apt-get update && apt-get install -y python3
|
2026-07-22 09:37:40 -05:00
|
|
|
- ENABLE_MIMIR_SDG=1 scripts/deploy_training_data.sh
|
2026-07-22 09:13:54 -05:00
|
|
|
when:
|
|
|
|
|
- event: push
|
|
|
|
|
branch: main
|