Sha256: c152ffdf964de91d7cbf4a68eefad47ceafa9b8c55f9f7d1bbb7f4d358d83bd4

Contents?: true

Size: 584 Bytes

Versions: 6

Compression:

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

6 entries across 6 versions & 1 rubygems

Version Path
record_store-6.5.5 .github/workflows/ci.yml
record_store-6.5.4 .github/workflows/ci.yml
record_store-6.5.3 .github/workflows/ci.yml
record_store-6.5.2 .github/workflows/ci.yml
record_store-6.5.1 .github/workflows/ci.yml
record_store-6.5.0 .github/workflows/ci.yml