Skip to content

README.md: rework the JSON schema section #215

README.md: rework the JSON schema section

README.md: rework the JSON schema section #215

name: Python its-info
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
cd python/its-info
python -m pip install --upgrade pip
pip install black wheel
- name: Run black
run: |
cd python/its-info
black --diff --check .
- name: Run package creation
run: |
cd python/its-info
python setup.py bdist_wheel