-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa053df
commit 92d0026
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Check migrations | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- develop | ||
- master | ||
|
||
env: | ||
DJANGO_SECRET_KEY: somekey | ||
DJANGO_ALLOWED_HOSTS: localhost | ||
CSRF_TRUSTED_ORIGINS: http://localhost | ||
DJANGO_DEBUG: True | ||
POSTGRES_DB: b2b-marketplace | ||
POSTGRES_USER: b2b-marketplace | ||
POSTGRES_PASSWORD: somepassword | ||
POSTGRES_HOST: localhost | ||
POSTGRES_PORT: 5432 | ||
|
||
jobs: | ||
migrations: | ||
name: Check migrations | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres | ||
env: | ||
POSTGRES_DB: ${{env.POSTGRES_DB}} | ||
POSTGRES_USER: ${{env.POSTGRES_USER}} | ||
POSTGRES_PASSWORD: ${{env.POSTGRES_PASSWORD}} | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 5s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- | ||
name: Check out the repo | ||
uses: actions/checkout@v3 | ||
- | ||
name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.9" | ||
- | ||
name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: 1.5.1 | ||
- | ||
name: Install Dependencies | ||
run: poetry install | ||
- | ||
name: Create .env file | ||
run: | | ||
mkdir infra | ||
touch infra/.env | ||
echo DJANGO_SECRET_KEY=$DJANGO_SECRET_KEY >> infra/.env | ||
echo DJANGO_ALLOWED_HOSTS=$DJANGO_ALLOWED_HOSTS >> infra/.env | ||
echo CSRF_TRUSTED_ORIGINS=$CSRF_TRUSTED_ORIGINS >> infra/.env | ||
echo DJANGO_DEBUG=$DJANGO_DEBUG >> infra/.env | ||
echo POSTGRES_DB=$POSTGRES_DB >> infra/.env | ||
echo POSTGRES_USER=$POSTGRES_USER >> infra/.env | ||
echo POSTGRES_PASSWORD=$POSTGRES_PASSWORD >> infra/.env | ||
echo POSTGRES_HOST=$POSTGRES_HOST >> infra/.env | ||
echo POSTGRES_PORT=$POSTGRES_PORT >> infra/.env | ||
- | ||
name: Run migrations | ||
run: python manage.py migrate | ||
- | ||
name: Check Migrations | ||
run: python manage.py makemigrations --check |