Automatically run migrations before automatically deploying #176
Workflow file for this run
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: Django CI | |
on: | |
pull_request: # Run on every PR | |
branches: | |
- main | |
- "**" | |
workflow_call: # Allow this workflow to be called by other workflows | |
inputs: | |
branch: | |
description: "Branch to run CI on" | |
required: false | |
default: "main" | |
type: "string" | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./bloom_nofos | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11.9" | |
- uses: Gr1N/setup-poetry@v8 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pypoetry/virtualenvs | |
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | |
- run: poetry --version | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests | |
run: poetry run python manage.py test |