Merge pull request #527 from openreferral/dependabot/pip/check-jsonsc… #508
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Has hsds_schema.py been run | |
| on: [push, pull_request] | |
| jobs: | |
| has_hsds_schema_py_been_run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.9 | |
| architecture: x64 | |
| - run: sudo apt-get install graphviz libgraphviz-dev pkg-config | |
| - run: pip install -r requirements.txt | |
| - run: hsds_schema.py docs-all | |
| - run: git diff --exit-code |