From 7289205fcf5e60d82684be2c59859b4fc3c5261d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Diego=20Piske?= Date: Wed, 13 Nov 2024 14:11:42 -0300 Subject: [PATCH] PG takes the blue pill --- .github/workflows/test.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c045a34..70a285d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,15 +9,23 @@ jobs: runs-on: ubuntu-latest services: test-postgres: - image: postgres + image: postgres:${{ matrix.postgres }} ports: - 5432:5432 env: POSTGRES_PASSWORD: foobar123 strategy: matrix: - gemfile: ['rails_7.1', 'rails_7.2'] - ruby: ['3.2', '3.3'] + gemfile: + - rails_7.1 + - rails_7.2 + ruby: + - '3.2' + - '3.3' + postgres: + - '15' + - '16' + - '17' steps: - name: Checkout source uses: actions/checkout@v4