plugis/viewswitch: Added hotkeys for cycling through views. #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate plugins | |
on: | |
push: | |
paths: | |
- '.github/workflows/**' | |
- 'plugins/**' | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'plugins/**' | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y python3-jsonschema | |
- name: Validate plugin properties | |
run: for x in plugins/*/plugin.json ; do jsonschema -i "$x" plugins/plugin.schema ; done |