Skip to content
Snippets Groups Projects

modified: .gitlab-ci.yml

Merged Whitney Armstrong requested to merge (removed):playing_with_CI into master
1 file
+ 10
12
Compare changes
  • Side-by-side
  • Inline
+ 10
12
before_script:
stages:
- apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs
- build
- ruby -v
- test
- which ruby
- gem install bundler --no-ri --no-rdoc
- bundle install --jobs $(nproc) "${FLAGS[@]}"
rspec:
test:
script:
stage: test
- bundle exec rspec
script: echo "Running tests"
 
 
build:
 
stage: build
 
script: echo "Building the app"
rubocop:
script:
- bundle exec rubocop
Loading