Skip to content

fix: PyPI publish workflow not working #20

fix: PyPI publish workflow not working

fix: PyPI publish workflow not working #20

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