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