Skip to content

Merge pull request #2 from Kaligo/chore/loosen-xxhash #22

Merge pull request #2 from Kaligo/chore/loosen-xxhash

Merge pull request #2 from Kaligo/chore/loosen-xxhash #22

Workflow file for this run

on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "3.1"
- "3.0"
- "2.7"
redis:
- 4
- 5
redis-version:
- 5
env:
RUBY_VERSION: ${{ matrix.ruby }}
BUNDLE_GEMFILE: Gemfile.redis.${{ matrix.redis }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run unit tests
run: bundle exec rspec