Sha256: ef8c6d77538bf31eb4a0e7950641913b6ca601d4c7e2d761020954798d503ae8

Contents?: true

Size: 682 Bytes

Versions: 5

Compression:

Stored size: 682 Bytes

Contents

name: CI

on: push

jobs:
  test:
    name: Ruby ${{ matrix.ruby }} on ubuntu-latest
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', 'ruby-head', 'jruby-9.3.7.0', 'truffleruby-22.2.0']
        # Windows on macOS builds started failing, so they are disabled for now
        # platform: [windows-2019, macOS-10.14, ubuntu-18.04]
        # exclude:
        # ...

    steps:
    - uses: actions/checkout@v1

    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true

    - name: Run test suite
      run: bundle exec rake test

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
statsd-instrument-3.5.11 .github/workflows/tests.yml
statsd-instrument-3.5.10 .github/workflows/tests.yml
statsd-instrument-3.5.9 .github/workflows/tests.yml
statsd-instrument-3.5.8 .github/workflows/tests.yml
statsd-instrument-3.5.7 .github/workflows/tests.yml