Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(ci): validate workflows
  • Loading branch information
EmilySeville7cfg authored and EmilySeville7cfg committed May 21, 2023
commit db9901f590357307830c120159897fda67596d2c
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,13 @@ jobs:
with:
command: clippy
args: --tests -- -D warnings

- name: Install JSON schema validator
run: pip3 install jsonschema-cli

- name: Run jsonschema-cli validate
run: |
shopt -s extglob
for directory in specs/*; do
env -C "$directory" jsonschema-cli validate "../../schemas/theme.json" *.yaml
done