Skip to content

Update README.md with extra usage examples #23

Update README.md with extra usage examples

Update README.md with extra usage examples #23

Workflow file for this run

name: CI
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install datamodel-code-generator
- name: Run checks
run: |
make -C datamodels/python check-ci