diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 077ed631..57144bd7 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -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'