Skip to content

Commit

Permalink
wef
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobMiksch authored Jul 7, 2024
1 parent 584f30e commit 855ef9b
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,23 @@ jobs:
run_tests:
runs-on: ubuntu-latest
container:
image: qgis/qgis:3.34
image: postgis/postgis:15-3.4
services:
postgres:
image: postgres
env:
POSTGRES_DB: my_database
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432

steps:
- uses: actions/checkout@v4
- name: install system dependencies
Expand Down

0 comments on commit 855ef9b

Please sign in to comment.