Sha256: efa06054e4e97d08a0f4c37f1ffbc54d9f2572dab8db7714e23d847e5a113ff2

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

---
# test config on https://config.travis-ci.com/explore
language: ruby
cache: bundler
before_install:
  - gem install bundler -v 2.1.4
stages:
  - test
  - deploy
jobs:
  include:
    - name: "Test Ruby-2.5.7 Rails-6.0"
      stage: test
      rvm: 2.5.7
      env: RAILS_VERSION="~> 6.0"
      before_script: bundle install
      script: bundle exec rake default
    - name: "Test Ruby-2.5.7 Rails-5.2"
      stage: test
      rvm: 2.5.7
      env: RAILS_VERSION="~> 5.2"
      before_script: bundle install
      script: bundle exec rake default
    - name: "Test Ruby-2.3.8 Rails-5.2"
      stage: test
      rvm: 2.3.8
      env: RAILS_VERSION="~> 5.2"
      before_script: bundle install
      script: bundle exec rake default
    - name: "Deploy documentation"
      stage: deploy
      before_script: yarn install
      script:
        - bundle exec rake yard
        - yarn docs:build
      deploy:
        provider: pages
        edge: true
        verbose: true
        cleanup: false
        local_dir: docs/.vuepress/dist
        token: $GITHUB_TOKEN
        keep_history: true
        on:
          branch: master

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
capybara_active_admin-0.3.3 .travis.yml