Sha256: 51eef98ae371e38cf9849fa39121b97bf2c812b643a9f5d91694536b1bad4963

Contents?: true

Size: 701 Bytes

Versions: 4

Compression:

Stored size: 701 Bytes

Contents

name: Ruby CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  test:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: [3.2, 3.1, "3.0", "2.7", "2.6", "2.5", "ruby-head"]

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
          bundler-cache: true # runs 'bundle install' and caches installed gems automatically
      - name: Start Redis
        uses: supercharge/redis-github-action@1.2.0
        with:
          redis-version: 6
      - name: Run tests
        run: bundle exec rspec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
redlock-2.0.6 .github/workflows/ci.yml
redlock-2.0.5 .github/workflows/ci.yml
redlock-2.0.4 .github/workflows/ci.yml
redlock-2.0.3 .github/workflows/ci.yml