Sha256: bb633d0fde299f340fd9442eac3880f8f5a584a70f59834be52b3510a30fe24c

Contents?: true

Size: 591 Bytes

Versions: 4

Compression:

Stored size: 591 Bytes

Contents

name: CI

on: [push, pull_request]

env:
  SRB_SKIP_GEM_RBIS: true

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [ 2.7.1, 3.1.0 ]
    name: Test Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: rubocop
        run: bin/rubocop --version && bin/rubocop
      - name: setup
        run: bin/setup
      - name: test
        run: bundle exec rake test

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
record_store-6.5.11 .github/workflows/ci.yml
record_store-6.5.10 .github/workflows/ci.yml
record_store-6.5.9 .github/workflows/ci.yml
record_store-6.5.8 .github/workflows/ci.yml