Sha256: b7103f699ba99cae9892a9c9e2947c6a966881ce00c8e1b6783b756db9effa5b

Contents?: true

Size: 732 Bytes

Versions: 3

Compression:

Stored size: 732 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.2.1 ]
    name: Test Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v4
      - name: Install dependencies
        run: |
          sudo apt-get update && sudo apt-get install build-essential libcurl4-openssl-dev
      - 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

3 entries across 3 versions & 1 rubygems

Version Path
record_store-6.7.2 .github/workflows/ci.yml
record_store-6.7.1 .github/workflows/ci.yml
record_store-6.7.0 .github/workflows/ci.yml