[DRAFT] Update the citus version and docker image config. #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Active Record Multi-Tenant Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- '2.6' | |
- '2.7' | |
- '3.0' | |
- '3.1' | |
gemfile: | |
- rails_6.0 | |
- rails_6.1 | |
- rails_7.0 | |
- active_record_6.0 | |
- active_record_6.1 | |
- active_record_7.0 | |
citus_version: | |
- '10' | |
- '11' | |
prepared_statements: [true, false] | |
exclude: | |
# activesupport-7.0.0 requires ruby version >= 2.7.0 | |
- ruby: '2.6' | |
gemfile: 'rails_7.0' | |
- ruby: '2.6' | |
gemfile: 'active_record_7.0' | |
name: Ruby ${{ matrix.ruby }} / ${{ matrix.gemfile }} ${{ (matrix.prepared_statements && 'w/ prepared statements') || '' }} / Citus ${{ matrix.citus_version }} | |
env: | |
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | |
PREPARED_STATEMENTS: ${{ matrix.prepared_statements && '1' }} | |
CITUS_VERSION: ${{ matrix.citus_version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
docker-compose up -d | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: | | |
bundle exec rake spec |