Sha256: 7319c98ec2c5484fadbe03de0ff540b1e591906ce69b18feb743a70b4275fb52

Contents?: true

Size: 976 Bytes

Versions: 8

Compression:

Stored size: 976 Bytes

Contents

env:
  global:
    - CC_TEST_REPORTER_ID=036a8fd92cf0c323c9704c041015837d14889e47de936bab18287626ff3372c1
language: ruby
services:
  - mysql
rvm:
  # Build on the latest stable of all supported Rubies (https://www.ruby-lang.org/en/downloads/):
  - 2.4.6
  - 2.5.5
  - 2.6.3
env:
  - AR_VERSION=5
  - AR_VERSION=6
matrix:
  exclude:
    - rvm: 2.4.6
      env: AR_VERSION=6
cache: bundler
before_script:
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
  - chmod +x ./cc-test-reporter
  - ./cc-test-reporter before-build
  - cp spec/config/database.yaml.ci spec/config/database.yaml
  - mysql -e 'CREATE DATABASE IF NOT EXISTS dbee_test;'
script:
  - bundle exec rubocop
  - bundle exec rspec spec --format documentation
after_script:
  - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
addons:
  # https://docs.travis-ci.com/user/uploading-artifacts/
  artifacts:
    paths:
      - Gemfile.lock

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
dbee-active_record-2.0.1 .travis.yml
dbee-active_record-2.0.0 .travis.yml
dbee-active_record-2.0.0.pre.alpha .travis.yml
dbee-active_record-1.2.0 .travis.yml
dbee-active_record-1.1.0 .travis.yml
dbee-active_record-1.0.4 .travis.yml
dbee-active_record-1.0.3 .travis.yml
dbee-active_record-1.0.2 .travis.yml