Skip to content

Commit 126996e

Browse files
committed
Debug log
1 parent df381c2 commit 126996e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Set up Dummy
6767
run: spec/dummy/bin/setup
6868
env:
69-
BUNDLE_GEMFILE: ../../gemfiles/${{ matrix.appraisal }}.gemfile
69+
BUNDLE_GEMFILE: gemfiles/${{ matrix.appraisal }}.gemfile
7070

7171
- name: Run tests
7272
run: bin/rspec

spec/dummy/config/boot.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# frozen_string_literal: true
22

3+
p ENV["BUNDLE_GEMFILE"]
4+
p __dir__
5+
p File.expand_path("../../..", __dir__)
6+
37
# Convert relative path to absolute, using project root as base
48
ENV["BUNDLE_GEMFILE"] = File.expand_path(
59
ENV["BUNDLE_GEMFILE"] || "Gemfile",
610
File.expand_path("../../..", __dir__),
711
)
812

13+
p ENV["BUNDLE_GEMFILE"]
14+
915
# Set up gems listed in the Gemfile.
1016
require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
1117

0 commit comments

Comments
 (0)