Sha256: ce94ef9297524a6d28dbbcff1151e925ce7b0adf2d3d8b43cb4899f37b58d7a8

Contents?: true

Size: 1.58 KB

Versions: 4

Compression:

Stored size: 1.58 KB

Contents

name: RSpec
on: [push, pull_request]

jobs:
  rspec:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        ruby: [2.7]
    runs-on: ${{ matrix.os }}
    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]
    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
  rspec-jruby:
    needs: rspec
    strategy:
      fail-fast: false
      matrix:
        os: [ ubuntu-latest ]
        ruby: [ jruby, jruby-head]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run:  JRUBY_OPTS="--debug" bundle exec rspec
  rspec-truffleruby:
    needs: rspec
    strategy:
      fail-fast: false
      matrix:
        os: [ ubuntu-latest ]
        ruby: [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

4 entries across 4 versions & 4 rubygems

Version Path
lex-log-0.1.4 .github/workflows/rspec.yml
lex-http-0.1.3 .github/workflows/rspec.yml
lex-node-0.2.0 .github/workflows/rspec.yml
legion-logging-1.2.0 .github/workflows/rspec.yml