From 30129074682ed57cfdef5e86c377a5b031adc5f2 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 19 Jan 2024 15:15:25 +0900 Subject: [PATCH] Don't use bundle exec to avoid warning of Ruby 3.3 --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2f6496e0..32b373da 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,5 +40,6 @@ jobs: with: ruby-version: ${{matrix.ruby}} bundler-cache: true - - run: bundle exec rake compile test + - run: bundle exec rake compile + - run: rake test - run: bundle exec rake build