Feature/move unpublished plays #1017
This file contains 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 migrations | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
migrations: | |
name: Check migrations | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Check out the repo | |
uses: actions/checkout@v2 | |
- | |
name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- | |
name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/prod.txt | |
- | |
name: Make migrations | |
run: python manage.py makemigrations --settings config.settings.test --check --dry-run |