Skip to content

Commit

Permalink
clean up ghwf debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettladley committed Jan 23, 2024
1 parent bce6359 commit 8f99c4a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ jobs:
docker exec $CONTAINER_ID bash -c "sed -i 's/^#* *max_connections *= *[0-9]*/max_connections = 256/' /var/lib/postgresql/data/postgresql.conf"
docker exec $CONTAINER_ID cat /var/lib/postgresql/data/postgresql.conf | grep max_connections
- name: Restart PostgreSQL Container
run: |
CONTAINER_ID=$(docker ps --filter "publish=5432" --format "{{.ID}}")
docker restart $CONTAINER_ID
run: docker restart $(docker ps --filter "publish=5432" --format "{{.ID}}")
- name: Migrate DB
run: cd backend/src && go run main.go --only-migrate
- name: Run Tests with Coverage
Expand Down

0 comments on commit 8f99c4a

Please sign in to comment.