Skip to content

Commit e08bf35

Browse files
committed
Ensure the typical bundle exec rake works in all cases
1 parent 0997e21 commit e08bf35

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ jobs:
7979
# This step is redundant with `bundler-cache: true` but is there to check a redundant `bundle install` still works
8080
- run: bundle install
8181
- run: bundle exec rake --version
82+
- run: bundle exec rake
8283

8384
- name: which ruby, rake
8485
if: "!startsWith(matrix.os, 'windows')"

Rakefile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
task :default do
2+
puts "Hello World from Rake"
3+
end

0 commit comments

Comments
 (0)