Skip to content

Commit

Permalink
Fix forgotten migrations check
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Dickinson committed Jan 28, 2024
1 parent b89ec1f commit 0656d57
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/no_forgoten_migrations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ on: [pull_request]
jobs:
is-migration-diff-clean:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: nycmesh-dev
POSTGRES_USER: nycmesh
POSTGRES_PASSWORD: abcd1234
POSTGRES_PORT: 5432
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down

0 comments on commit 0656d57

Please sign in to comment.