Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test against Ruby 2.7 on CircleCI #1548

Merged
merged 1 commit into from
Oct 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ commands:
steps:
- checkout

# Install bundler
- run: gem install bundler:1.17.3

# Restore Cached Dependencies
- restore_cache:
name: Restore bundle cache
Expand Down Expand Up @@ -70,10 +73,24 @@ jobs:
POSTGRES_DB: ruby26
POSTGRES_PASSWORD: ""

ruby-27:
<<: *default_job
docker:
- image: circleci/ruby:2.7-node-browsers-legacy
environment:
PGHOST: localhost
PGUSER: administrate
RAILS_ENV: test
- image: postgres:10.1-alpine
environment:
POSTGRES_USER: administrate
POSTGRES_DB: ruby27
POSTGRES_PASSWORD: ""

workflows:
version: 2
multiple-rubies:
jobs:
- ruby-27
- ruby-26
- ruby-25