Sha256: acee6e2829c6d5abc61e4fc9515e6e6f78ad919f7d21beb613feca2a30b1b542

Contents?: true

Size: 675 Bytes

Versions: 8

Compression:

Stored size: 675 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', '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

8 entries across 8 versions & 1 rubygems

Version Path
statsd-instrument-3.5.6 .github/workflows/tests.yml
statsd-instrument-3.5.5 .github/workflows/tests.yml
statsd-instrument-3.5.4 .github/workflows/tests.yml
statsd-instrument-3.5.3 .github/workflows/tests.yml
statsd-instrument-3.5.2 .github/workflows/tests.yml
statsd-instrument-3.5.1 .github/workflows/tests.yml
statsd-instrument-3.5.0 .github/workflows/tests.yml
statsd-instrument-3.4.0 .github/workflows/tests.yml