Sha256: 4fcb29f5115c874984a51722d0e239316b75538d017083b983b4268923b39889

Contents?: true

Size: 647 Bytes

Versions: 3

Compression:

Stored size: 647 Bytes

Contents

name: Ruby

on:
  push:
  pull_request:
    branches: [ master ]
  schedule:
    # Runs at 00:00 UTC on the 1st of every month.
    - cron: '0 0 1 * *'

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7.2', '3.0', '3.1']

    services:
      postgres:
        image: docker
    steps:
    - uses: actions/checkout@v2
      with:
        submodules: true
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run tests
      run: bundle exec rake
    - name: Run crossdock
      run: make crossdock

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
dox-jaeger-client-2.0.0 .github/workflows/ci.yml
jaeger-client-with-ruby-32-support-2.0.0 .github/workflows/ci.yml
jaeger-client-1.3.0 .github/workflows/ci.yml