Skip to content

Test with Postgres 17 on CI #50

Test with Postgres 17 on CI

Test with Postgres 17 on CI #50

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.3
postgres: 17
- ruby: 3.2
postgres: 15
- ruby: 3.1
postgres: 14
- ruby: "3.0"
postgres: 13
- ruby: "3.0"
postgres: 12
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: ankane/setup-postgres@v1
with:
postgres-version: ${{ matrix.postgres }}
database: pgslice_test
- run: bundle exec rake test