Sha256: 4cc7dfbcc05f1145a4feb104cab035b4464f2514068caed6c9956b2f7c253a0c

Contents?: true

Size: 625 Bytes

Versions: 3

Compression:

Stored size: 625 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']

        # Windows on macOS builds started failing, so they are disabled for noew
        # 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

3 entries across 3 versions & 1 rubygems

Version Path
statsd-instrument-3.3.0 .github/workflows/tests.yml
statsd-instrument-3.2.1 .github/workflows/tests.yml
statsd-instrument-3.2.0 .github/workflows/tests.yml