File: .gitlab-ci.yml

package info (click to toggle)
ruby-chronic 0.10.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 536 kB
  • sloc: ruby: 4,557; makefile: 9; sh: 8
file content (16 lines) | stat: -rw-r--r-- 318 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
image: "ruby:2.6-alpine"

cache:
  paths:
    - vendor/ruby

before_script:
  - apk add --update git build-base tzdata
  - gem install bundler
  - bundle install --path vendor/ruby

rspec:
  script:
    - bundle exec rake test
    - ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime
    - bundle exec rake test