From e08bf35edf2eba322717429579775dfbbdb72225 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Thu, 29 Jul 2021 13:24:06 +0200 Subject: [PATCH] Ensure the typical `bundle exec rake` works in all cases --- .github/workflows/test.yml | 1 + Rakefile | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 Rakefile diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2dc0d6..72916f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -79,6 +79,7 @@ jobs: # This step is redundant with `bundler-cache: true` but is there to check a redundant `bundle install` still works - run: bundle install - run: bundle exec rake --version + - run: bundle exec rake - name: which ruby, rake if: "!startsWith(matrix.os, 'windows')" diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..1187143 --- /dev/null +++ b/Rakefile @@ -0,0 +1,3 @@ +task :default do + puts "Hello World from Rake" +end