From eb7eef4f97f3e35af0ed8a670a83dda74cb8e18c 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2f6496e0..7a72e185 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,6 @@ jobs: - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} - bundler-cache: true - - run: bundle exec rake compile test - - run: bundle exec rake build + - run: bundle install --jobs 4 --retry 3 + - run: rake test + - run: rake build