Sha256: b54ed9d2410c0db2be5b2dd0870a1b88dcf77d9e2aac93ee98bc0e7234752c6d

Contents?: true

Size: 496 Bytes

Versions: 5

Compression:

Stored size: 496 Bytes

Contents

# Ruby
# Package your Ruby project.
# Add steps that install rails, analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/ruby

pool:
  vmImage: 'Ubuntu 16.04'

steps:
- task: UseRubyVersion@0
  inputs:
    versionSpec: '>= 2.5'

- script: |
    gem install bundler git-version-bump
    bin/setup
  displayName: 'bundle install'

- script: bundle exec rake
  displayName: 'bundle exec rake'
  env:
    CODECOV_TOKEN: $(codecov.token)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ruby-dagger-0.3.3 azure-pipelines.yml
ruby-dagger-0.3.2 azure-pipelines.yml
ruby-dagger-0.3.1 azure-pipelines.yml
ruby-dagger-0.3.0 azure-pipelines.yml
ruby-dagger-0.2.1 azure-pipelines.yml