Skip to content

Commit 17cbccd

Browse files
authored
Merge pull request #37 from ruby/fix-test-fail-head
Remove bundle exec for assert_separately.
2 parents 710a647 + 426758c commit 17cbccd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
uses: ruby/setup-ruby@v1
3737
with:
3838
ruby-version: ${{ matrix.ruby }}
39-
bundler-cache: true # 'bundle install' and cache gems
39+
- name: Install dependencies
40+
run: bundle install
41+
- name: Build
42+
run: rake compile
4043
- name: Run test
41-
run: bundle exec rake test
44+
run: rake test

0 commit comments

Comments
 (0)