Skip to content

Commit dc38488

Browse files
authored
Merge pull request #145 from krororo/dont-use-appraisal-in-ci
Don't use appraisal in CI
2 parents 374c72f + de3c20f commit dc38488

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.circleci/config.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ jobs:
99
type: string
1010
docker:
1111
- image: ruby:<< parameters.ruby-version >>
12+
environment:
13+
BUNDLE_GEMFILE: gemfiles/<< parameters.gemfile >>.gemfile
1214
- image: cimg/postgres:11.16
1315
steps:
1416
- checkout
1517
- run: gem install bundler
1618
- run: bundle install
17-
- run: bundle exec appraisal << parameters.gemfile >> bundle install
18-
- run: bundle exec appraisal << parameters.gemfile >> rspec
19+
- run: bundle exec rspec
1920

2021
workflows:
2122
test:
@@ -28,12 +29,12 @@ workflows:
2829
- '3.0'
2930
- '3.1'
3031
gemfile:
31-
- rails-6.0
32-
- rails-6.1
33-
- rails-7.0
34-
- rails-main
32+
- rails_6.0
33+
- rails_6.1
34+
- rails_7.0
35+
- rails_main
3536
exclude:
3637
- ruby-version: '3.0'
37-
gemfile: rails-6.0
38+
gemfile: rails_6.0
3839
- ruby-version: '3.1'
39-
gemfile: rails-6.0
40+
gemfile: rails_6.0

0 commit comments

Comments
 (0)