Sha256: bb181bb114ae92248b3f4f48260b14b6af4ab147069699f9660ce50cde18a857

Contents?: true

Size: 949 Bytes

Versions: 6

Compression:

Stored size: 949 Bytes

Contents

name: RSpec
on: [push, pull_request]

jobs:
  rspec:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        ruby: [2.7]
    runs-on: ${{ matrix.os }}
    services:
      redis:
        image: redis
        ports:
          - 6379:6379

    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: RSpec run
        run: |
          bash -c "
            bundle exec rspec
            [[ $? -ne 2 ]]
          "
  rspec-mri:
    needs: rspec
    strategy:
      fail-fast: false
      matrix:
        os: [ ubuntu-latest ]
        ruby: [2.5, 2.6, '3.0', head, truffleruby]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rspec

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
telemetry-metrics-parser-0.2.0 .github/workflows/rspec.yml
telemetry-snmp-0.3.0 .github/workflows/rspec.yml
telemetry-snmp-0.2.0 .github/workflows/rspec.yml
telemetry-snmp-0.1.0 .github/workflows/rspec.yml
telemetry-metrics-parser-0.1.1 .github/workflows/rspec.yml
telemetry-metrics-parser-0.1.0 .github/workflows/rspec.yml