Skip to content

chore: Let db adapter to decide how to handle database target and source names. #35

chore: Let db adapter to decide how to handle database target and source names.

chore: Let db adapter to decide how to handle database target and source names. #35

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [3.1, 3.2]
services:
postgres:
image: postgres:14
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5555:5432
env:
POSTGRES_USER: veksel
POSTGRES_PASSWORD: foobar
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bin/test