Skip to content

Commit

Permalink
Build with Postgres 16 (#645)
Browse files Browse the repository at this point in the history
* fix ident in editor config for yml files

* build with Postgres 16
  • Loading branch information
hrach authored Dec 8, 2023
1 parent 579ac3c commit 74602bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ indent_size = 4
# YAML
[*.yml]
indent_style = space
indent_size = 4
indent_size = 2

# JSON
[*.json]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ jobs:
--health-start-period 10s
--health-timeout 5s
--health-retries 10
postgres96:
image: postgres:9.6
postgres13:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand All @@ -112,8 +112,8 @@ jobs:
--health-interval 10s
--health-timeout 5s
--health-retries 5
postgres13:
image: postgres:13
postgres16:
image: postgres:16
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
Expand Down
4 changes: 2 additions & 2 deletions tests/databases.github.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ username = root
password = root
port = 3308

[pgsql 9.6]
[pgsql 13]
driver = pgsql
host = "127.0.0.1"
database = nextras_orm_test
username = postgres
password = postgres
port = 5432

[pgsql 13]
[pgsql 16]
driver = pgsql
host = "127.0.0.1"
database = nextras_orm_test
Expand Down

0 comments on commit 74602bb

Please sign in to comment.