File: .gitlab-ci.yml

package info (click to toggle)
ruby-chronic-duration 0.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: ruby: 535; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 325 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.default:
  image: "ruby:${RUBY_VERSION}"
  before_script:
    - ruby -v
    - which ruby
    - gem install bundler
    - bundle install --jobs $(nproc)  "${FLAGS[@]}"

rspec:
  extends:
    - .default
  stage: test
  script:
    - bundle exec rspec
  parallel:
    matrix:
      - RUBY_VERSION: ['2.7', '3.0', '3.1', '3.2']