Skip to content

Commit

Permalink
maybe this fixes it?
Browse files Browse the repository at this point in the history
  • Loading branch information
dadav committed Sep 3, 2024
1 parent dffbf0f commit 038bdc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ jobs:
- shell: bash
run: |-
find
tar xf helm-schema_*-next_Linux_x86_64.tar.gz -C /usr/bin helm-schema
tar xf helm-schema_*-next_Linux_x86_64.tar.gz -C tests helm-schema
cd tests && ./run.sh
2 changes: 1 addition & 1 deletion tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rc=0
for test_file in test_*.yaml; do
expected_file="${test_file%.yaml}_expected.schema.json"
generated_file="${test_file%.yaml}_generated.schema.json"
helm-schema -f "$test_file" -o "$generated_file"
./helm-schema -f "$test_file" -o "$generated_file"
if diff <(jq --sort-keys . "$generated_file") <(jq --sort-keys . "$expected_file"); then
echo "✅: $test_file"
else
Expand Down

0 comments on commit 038bdc3

Please sign in to comment.