Skip to content

bump ree_lib version to 1.0.91 #193

bump ree_lib version to 1.0.91

bump ree_lib version to 1.0.91 #193

Workflow file for this run

name: Testing
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.1', '3.2', '3.3']
gemfile_folders: ['ree', 'ree_lib']
include:
- gemfile_folders: 'ree'
rspec_cmd: 'cd ree && bundle exec rspec'
- gemfile_folders: 'ree_lib'
rspec_cmd: 'cd ree_lib/lib/ree_lib && bundle exec ree spec'
services:
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
working-directory: ${{ matrix.gemfile_folders }}
- run: ${{ matrix.rspec_cmd }}