-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test against multiple PostgreSQL versions
This commit introduces an improvement in our testing strategy to ensure broader compatibility across various PostgreSQL versions. The primary focus remains on the latest stable release of PostgreSQL, acknowledging the significance of maintaining support for older versions to accommodate the longevity of applications. To facilitate this, tests have been added to verify the application's functionality against PostgreSQL 12. Since `setup-postgres` action does not allow to create multiple databases, consider a refactoring if ankane/setup-postgres#9 will be merged.
- Loading branch information
Showing
3 changed files
with
27 additions
and
18 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
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
host: localhost | ||
username: postgres | ||
username: runner | ||
password: "" | ||
database: chronomodel | ||
pool: 11 |