面向机器学习的 CI/CD
Ravi Bhadauria
Machine Learning Engineer

|):保留换行与缩进commands: |
echo "Running python script..."
python3 script.py



>):移除换行message: >
Successfully executed the code!
All processes completed
without any errors.
The results have been saved
in the designated
output directory.




-):移除末尾所有换行


+):保留末尾所有换行


${{ ... }}database:
host: ${{ config.database.host }}
port: ${{ config.database.port }}
username: ${{ config.database.username }}
password: ${{ config.database.password }}
___
- name: John
age: 30
___
- name: Jane
age: 28
___
- name: Bob
age: 35
occupation: Developer
| 名称 | YAML 符号 |
|---|---|
| 文字样式指示符 | | |
| 折叠样式指示符 | > |
| strip 吞行指示符 | − |
| keep 吞行指示符 | + |
| 表达式 | ${{ ... }} |
| 多文档 YAML | ––– |
面向机器学习的 CI/CD