Skip to content

add pip install json schema to github actions #5

add pip install json schema to github actions

add pip install json schema to github actions #5

Workflow file for this run

name: Test Configs
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install jsonschema
- name: Run pytest
run: pytest