Skip to content

Commit

Permalink
Fix last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyshields committed Oct 19, 2024
1 parent b019f64 commit 5469955
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ jobs:

- name: test
timeout-minutes: 10
run: bundle exec rake spec
run: bundle exec rake test
continue-on-error: ${{ matrix.experimental }}
15 changes: 8 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#!/usr/bin/env rake
# -*- mode: ruby -*-

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
require 'rubygems'
require './lib/natural_sort.rb'
require 'rake/testtask'

RuboCop::RakeTask.new(:rubocop)
task default: :test

RSpec::Core::RakeTask.new(:spec)

task default: [:spec]
Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList['test/**/test_*.rb']
end

0 comments on commit 5469955

Please sign in to comment.