Skip to content

fix: datamodel-code-generator not installed in CI workflow #9

fix: datamodel-code-generator not installed in CI workflow

fix: datamodel-code-generator not installed in CI workflow #9

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 poetry
- name: Run checks
run: |
pushd datamodels/python
poetry install --only dev
pip show datamodel-code-generator
make check-ci