-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 1000 Bytes
/
schema-gen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Schema Generation
on:
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: "3.11"
miniforge-version: latest
- name: Installing datamodel-gen
run: |
pip install datamodel-code-generator==0.26
pip install pydantic==2
shell: bash -l {0}
- name: Run datamodel-generation
shell: bash -l {0}
run: |
datamodel-codegen --input schemas --input-file-type jsonschema --output python_models --output-model pydantic_v2.BaseModel
PYTHONPATH=. pytest test/load_models.py