Sha256: dac2f38b22f948d50c3be6548d7e7443c6a9e0a2f077de5f285e482ace8dfbfe

Contents?: true

Size: 680 Bytes

Versions: 3

Compression:

Stored size: 680 Bytes

Contents

name: CI

on: push

jobs:
  test:
    name: Ruby ${{ matrix.ruby }} on ubuntu-18.04
    runs-on: ubuntu-18.04
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.6', '2.7', '3.0']

        # 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: Setup Ruby
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}

    - name: Install dependencies
      run: gem install bundler && bundle install --jobs 4 --retry 3

    - name: Run test suite
      run: rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
statsd-instrument-3.1.2 .github/workflows/tests.yml
statsd-instrument-3.1.1 .github/workflows/tests.yml
statsd-instrument-3.1.0 .github/workflows/tests.yml