Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove kernel module #9

Merged
merged 6 commits into from
Oct 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix last commit
  • Loading branch information
johnnyshields committed Oct 19, 2024
commit 5469955d49296638705262d470c3d9b29428f39a
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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
Loading