Compare commits

...

1 Commits

Author SHA1 Message Date
Constantin Graf
4a7f587b0a Add postgres version matrix to phpunit tests 2025-06-04 21:38:36 +02:00

View File

@@ -6,10 +6,13 @@ jobs:
phpunit:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
postgres_version: [ 15, 16, 17 ]
services:
pgsql_test:
image: postgres:15
image: postgres:${{ matrix.postgres_version }}
env:
PGPASSWORD: 'root'
POSTGRES_DB: 'laravel'