mirror of
https://gitlab.com/components/sast.git
synced 2025-07-01 07:48:28 +02:00
Add .gitlab-ci.yml and test Ruby app
This commit is contained in:
parent
4150356e21
commit
85795eaed6
17 changed files with 240 additions and 8 deletions
12
src/ruby_gem/Rakefile
Normal file
12
src/ruby_gem/Rakefile
Normal file
|
@ -0,0 +1,12 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "bundler/gem_tasks"
|
||||
require "rspec/core/rake_task"
|
||||
|
||||
RSpec::Core::RakeTask.new(:spec)
|
||||
|
||||
require "rubocop/rake_task"
|
||||
|
||||
RuboCop::RakeTask.new
|
||||
|
||||
task default: %i[spec rubocop]
|
Loading…
Add table
Add a link
Reference in a new issue