Skip to content

Commit

Permalink
Use latest PG for sequel tests
Browse files Browse the repository at this point in the history
This also aligns DB config with sequel's CI.
  • Loading branch information
headius committed Aug 9, 2023
1 parent e3b9932 commit b99cbfb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -464,15 +464,17 @@ jobs:

services:
postgres:
image: postgres:11.5
ports: ["5432:5432"]
image: postgres:latest
ports: [ "5432:5432" ]
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
POSTGRES_PASSWORD: postgres
mysql:
image: mysql:latest
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: sequel_test
ports: ["3306:3306"]
ports: [ "3306:3306" ]
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
Expand Down

0 comments on commit b99cbfb

Please sign in to comment.