Skip to content

Update description in view.schema.json #152

Update description in view.schema.json

Update description in view.schema.json #152

Workflow file for this run

name: Validate jsonschema
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7]
name: Test Schema
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install jsonschema
- name: Test schema
run: |
python -m unittest discover -s test -v