bluetoothlover_doc icon indicating copy to clipboard operation
bluetoothlover_doc copied to clipboard

yml 文件语法

Open supperthomas opened this issue 1 year ago • 7 comments

supperthomas avatar Jan 03 '24 09:01 supperthomas

https://ruanyifeng.com/blog/2016/07/yaml.html

supperthomas avatar Jan 03 '24 11:01 supperthomas

https://yaml.org/spec/1.2.2/

supperthomas avatar Jan 03 '24 11:01 supperthomas

http://nodeca.github.io/js-yaml/

supperthomas avatar Jan 03 '24 11:01 supperthomas

https://yaml.org/

supperthomas avatar Jan 03 '24 11:01 supperthomas

https://mp.weixin.qq.com/s/S6l5KHyufsV0FGDgm-ZW9g

supperthomas avatar Jan 03 '24 23:01 supperthomas

jobs: poll-and-echo: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2

  - name: Poll Folders and Execute Echo
    run: |
      folder_path="/your/folder/path"  # 将此处修改为您要轮询的文件夹路径
      for subfolder in "$folder_path"/*/
      do
          if [ -d "$subfolder" ]; then
              cd "$subfolder"
              echo "Executing in $subfolder"
              echo
              cd -
          fi
      done

supperthomas avatar Jul 20 '24 03:07 supperthomas

https://codebeautify.org/yaml-validator

yml 语法验证器

supperthomas avatar Aug 17 '24 13:08 supperthomas