22 lines
460 B
YAML
22 lines
460 B
YAML
when:
|
|
- event: push
|
|
- event: pull_request
|
|
|
|
steps:
|
|
validate:
|
|
image: rust:1.95
|
|
commands:
|
|
- apt-get update && apt-get install -y python3
|
|
- rustc --version
|
|
- cargo --version
|
|
- scripts/precommit-check.sh
|
|
|
|
deploy_training_data:
|
|
image: rust:1.95
|
|
commands:
|
|
- apt-get update && apt-get install -y python3
|
|
- ENABLE_MIMIR_SDG=1 scripts/deploy_training_data.sh
|
|
when:
|
|
- event: push
|
|
branch: main
|