Skip to content

Commit a7c914f

Browse files
committed
Spec: make spec the default rake task
1 parent c277c6d commit a7c914f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
- uses: ruby/setup-ruby@v1
1212
with:
1313
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
14-
- run: bundle exec rake spec
14+
- run: bundle exec rake

Rakefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ import 'lib/tasks/publish/azure.rake'
1414
import 'lib/tasks/publish/gcp.rake'
1515

1616
require 'rspec/core/rake_task'
17-
RSpec::Core::RakeTask.new(:spec)
17+
RSpec::Core::RakeTask.new(:spec)
18+
19+
task default: [:spec]

0 commit comments

Comments
 (0)