Feat/experiments ga4gh structure #272
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: Check for missing migrations | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| pull_request: | |
| branches: | |
| - 'features/**' | |
| - develop | |
| - master | |
| jobs: | |
| check-migration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: python -m pip install poetry | |
| - name: Install Python dependencies | |
| run: poetry install | |
| - name: Install GeoDjango Apt dependencies | |
| run: sudo apt-get update -y && sudo apt-get install -y gdal-bin | |
| - name: Check for missed migrations | |
| run: poetry run ./manage.py makemigrations --check |