Skip to content

Commit 8eb0488

Browse files
authored
fix ci workflow validation quoting (#6)
1 parent b7b5480 commit 8eb0488

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
uses: actions/checkout@v6
2020

2121
- name: Validate workflow syntax
22-
run: ruby -e 'Dir[".github/workflows/*.{yml,yaml}"].each { |f| require "yaml"; YAML.load_file(f); puts "validated #{f}" }'
22+
run: |
23+
ruby -e 'Dir[".github/workflows/*.{yml,yaml}"].each { |f| require "yaml"; YAML.load_file(f); puts "validated #{f}" }'
2324
2425
test:
2526
name: Test

0 commit comments

Comments
 (0)