diff --git a/.alloy-ci.json b/.alloy-ci.json index 234c8f4..f9d4605 100644 --- a/.alloy-ci.json +++ b/.alloy-ci.json @@ -1,9 +1,7 @@ { - "Rspec Tests": { + "Run Test": { "script": [ - "bundle install --path vendor/bundle", - "bundle exec rake db:setup", - "bundle exec rspec" + "ruby test.rb" ] }, "variables": { diff --git a/test.rb b/test.rb index cb02c90..bf7e8b3 100644 --- a/test.rb +++ b/test.rb @@ -1,5 +1,6 @@ #!/usr/bin/env ruby puts "I'm alive!" +puts "Here I am" exit 0