From 57bda9e6974f882dbec232b7ed826a65cb852d7d Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 16 Dec 2021 14:50:07 +0900 Subject: [PATCH] pathname is activated by bundler, Because we can't test it under the bundler --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5bcd688..0954551 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,6 +21,7 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - bundler-cache: true # 'bundle install' and cache + - name: Install dependencies + run: bundle install - name: Run test - run: bundle exec rake compile test + run: rake compile test