action-setup-postgres
action-setup-postgres copied to clipboard
Setup a PostgreSQL for Linux, macOS and Windows runner machines.
Hi @ikalnytskyi 👋 hope things are good with you! We're running into a very confusing issue with the action, where environment variables which we set in our workflow are somehow...
One of the foundational principles of this action was to use preinstalled PostgreSQL binaries. The rationale was simple: * Make sure the action is fast and no installation is required....
Hello @ikalnytskyi , I am testing your action and it seems it will install `posgresql` version `14.6` in `/usr/local/Cellar/postgresql@14/14.6/bin/postgres`. I would like to have version `12.9` , how can I...
Hello! Many thanks for your action for PostgreSQL. I'm working on https://github.com/qaspen-python/psqlpy and I need to turn on SSL mode in PostgreSQL for a new feature testing. So, I've made...
https://github.com/ikalnytskyi/action-setup-postgres/blob/687404e7b78b0b3471751635e69f70d54a09d6e7/action.yml#L127 Hello, I am trying to use this action to set up `dbmate` and getting the following ``` panic: setting PGSERVICEFILE not supported ``` It might be nice to disable...
The connection service file allows libpq connection parameters to be associated with a single service name. Service names can be defined in either a per-user service file or a system-wide...
```yaml steps: - uses: actions/checkout@v4 - uses: ./.github/actions/prepare # Just installs PHP and dependencies with: token: ${{ secrets.GH_TOKEN }} - uses: ikalnytskyi/action-setup-postgres@v7 id: postgres - env: PGSERVICE: ${{ steps.postgres.outputs.service-name }}...
Hi there, I wrote a small python library to access multiple postgres databases at once called [pgbase](https://github.com/brunolnetto/pgbase). After writing a bunch of tests, I want to integrate the coverage upload...
In v7, it seems impossible to keep the behavior that v6 provided: run the pre-installed version. For my project, I don't care much which Postgres version is installed, and prefer...