Skip to content

Commit 0e3d59b

Browse files
committed
fix(ci): install pyyaml before validating action.yml
Made-with: Cursor
1 parent 4361b13 commit 0e3d59b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555
done
5656
5757
- name: Validate action.yml
58-
run: python -c "import yaml; yaml.safe_load(open('action.yml')); print('action.yml OK')"
58+
run: |
59+
pip install pyyaml
60+
python -c "import yaml; yaml.safe_load(open('action.yml')); print('action.yml OK')"
5961
6062
action-test:
6163
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)