Skip to content
This repository has been archived by the owner on Jun 30, 2022. It is now read-only.

Commit

Permalink
Use shell script instead of rake for CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmycuadra committed Aug 19, 2020
1 parent 22bd040 commit cc547f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ matrix:
allow_failures:
- rvm: jruby-9.0.0.0
fast_finish: true
script: bundle exec rake
script: script/ci
before_install:
- gem update --system
- gem update bundler
Expand Down
7 changes: 0 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
require "bundler/gem_tasks"
require "rspec/core/rake_task"
require "rubocop/rake_task"

RSpec::Core::RakeTask.new
RuboCop::RakeTask.new

task default: [:spec, :rubocop]
4 changes: 4 additions & 0 deletions script/ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

bundle exec rspec
bundle exec rubocop

0 comments on commit cc547f7

Please sign in to comment.