We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df381c2 commit 126996eCopy full SHA for 126996e
2 files changed
.github/workflows/main.yml
@@ -66,7 +66,7 @@ jobs:
66
- name: Set up Dummy
67
run: spec/dummy/bin/setup
68
env:
69
- BUNDLE_GEMFILE: ../../gemfiles/${{ matrix.appraisal }}.gemfile
+ BUNDLE_GEMFILE: gemfiles/${{ matrix.appraisal }}.gemfile
70
71
- name: Run tests
72
run: bin/rspec
spec/dummy/config/boot.rb
@@ -1,11 +1,17 @@
1
# frozen_string_literal: true
2
3
+p ENV["BUNDLE_GEMFILE"]
4
+p __dir__
5
+p File.expand_path("../../..", __dir__)
6
+
7
# Convert relative path to absolute, using project root as base
8
ENV["BUNDLE_GEMFILE"] = File.expand_path(
9
ENV["BUNDLE_GEMFILE"] || "Gemfile",
10
File.expand_path("../../..", __dir__),
11
)
12
13
14
15
# Set up gems listed in the Gemfile.
16
require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
17
0 commit comments