Sha256: 5bd4a59959a27b7465b7d2ced4188b814fcb5e46d4083123a0a07511f747257e

Contents?: true

Size: 1.25 KB

Versions: 2

Compression:

Stored size: 1.25 KB

Contents

name: Test unstable
on: [push]
jobs:
  test-head:
    strategy:
      fail-fast: false
      matrix:
        ruby: [head, jruby-head, truffleruby-head]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@77ca66ce2792fb05b8b204a203328e12593a64f3 # v1.72.1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
        continue-on-error: true
      - run: bundle exec rake test:main
        continue-on-error: true
      - run: bundle exec rake spec:main
        continue-on-error: true
      - run: bundle exec rake spec:contrib
        continue-on-error: true
      - run: bundle exec rake spec:opentracer
        continue-on-error: true
      # A few contrib jobs that `ddtrace` already includes their gem in the global Gemfile.
      # We technically don't need appraisal to run them, thus are easy candidates for early testing.
      - run: bundle exec rake spec:rake
        continue-on-error: true
      - run: bundle exec rake spec:rspec
        continue-on-error: true
      - run: bundle exec rake spec:concurrent_ruby
        continue-on-error: true
      - run: bundle exec rake spec:http
        continue-on-error: true

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ddtrace-0.51.1 .github/workflows/test-head.yaml
ddtrace-0.51.0 .github/workflows/test-head.yaml