Skip to content

Add zstd to benchmarks #25

Add zstd to benchmarks

Add zstd to benchmarks #25

Workflow file for this run

name: Ruby CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: redis:alpine
ports: ["6379:6379"]
memcached:
image: memcached:alpine
ports: ["11211:11211"]
strategy:
fail-fast: false
matrix:
ruby-version: ['3.2', '3.1', '3.0', '2.7', '2.6']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests for Redis cache store
run: TEST_RAILS_CACHE_STORE=redis_cache_store bundle exec rspec spec
- name: Run tests for Memcache cache store
run: TEST_RAILS_CACHE_STORE=mem_cache_store bundle exec rspec spec
- name: Run tests for Brotli cache store
run: TEST_RAILS_CACHE_STORE=brotli_cache_store bundle exec rspec spec
- name: Run tests for in-memory cache store
run: bundle exec rspec spec