Skip to content

Commit

Permalink
Merge pull request #145 from krororo/dont-use-appraisal-in-ci
Browse files Browse the repository at this point in the history
Don't use appraisal in CI
  • Loading branch information
krororo authored Aug 17, 2023
2 parents 374c72f + de3c20f commit dc38488
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ jobs:
type: string
docker:
- image: ruby:<< parameters.ruby-version >>
environment:
BUNDLE_GEMFILE: gemfiles/<< parameters.gemfile >>.gemfile
- image: cimg/postgres:11.16
steps:
- checkout
- run: gem install bundler
- run: bundle install
- run: bundle exec appraisal << parameters.gemfile >> bundle install
- run: bundle exec appraisal << parameters.gemfile >> rspec
- run: bundle exec rspec

workflows:
test:
Expand All @@ -28,12 +29,12 @@ workflows:
- '3.0'
- '3.1'
gemfile:
- rails-6.0
- rails-6.1
- rails-7.0
- rails-main
- rails_6.0
- rails_6.1
- rails_7.0
- rails_main
exclude:
- ruby-version: '3.0'
gemfile: rails-6.0
gemfile: rails_6.0
- ruby-version: '3.1'
gemfile: rails-6.0
gemfile: rails_6.0

0 comments on commit dc38488

Please sign in to comment.