rack-attack/.github/workflows/build.yml
dependabot[bot] 4606efbe5e
build(deps): bump actions/checkout from 4 to 5 (#690)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gonzalo R <456459+grzuy@users.noreply.github.com>
2025-08-30 19:16:15 -04:00

155 lines
4.9 KiB
YAML

name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
services:
redis:
image: redis
ports:
- 6379:6379
memcached:
image: memcached
ports:
- 11211:11211
strategy:
fail-fast: false
matrix:
ruby:
- '3.4'
- '3.3'
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
gemfile:
- rack_3
- rack_2
- rails_8_0
- rails_7_2
- rails_7_1
- rails_7_0
- rails_6_1
- rails_6_0
- dalli3
- redis_5
- redis_4
- connection_pool_dalli
- active_support_8_0_redis_cache_store
- active_support_8_0_redis_cache_store_pooled
- active_support_7_2_redis_cache_store
- active_support_7_2_redis_cache_store_pooled
- active_support_7_1_redis_cache_store
- active_support_7_1_redis_cache_store_pooled
- active_support_7_0_redis_cache_store
- active_support_7_0_redis_cache_store_pooled
- active_support_6_redis_cache_store
- active_support_6_redis_cache_store_pooled
- redis_store
exclude:
- gemfile: rails_6_0
ruby: '3.4'
- gemfile: active_support_6_redis_cache_store
ruby: '3.4'
- gemfile: active_support_6_redis_cache_store_pooled
ruby: '3.4'
- gemfile: rails_6_1
ruby: '3.4'
- gemfile: rails_7_0
ruby: '3.4'
- gemfile: rails_7_0
ruby: '2.6'
- gemfile: rails_7_0
ruby: '2.5'
- gemfile: active_support_7_0_redis_cache_store
ruby: '3.4'
- gemfile: active_support_7_0_redis_cache_store
ruby: '2.6'
- gemfile: active_support_7_0_redis_cache_store
ruby: '2.5'
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: '3.4'
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: '2.6'
- gemfile: active_support_7_0_redis_cache_store_pooled
ruby: '2.5'
- gemfile: rails_7_1
ruby: '2.6'
- gemfile: rails_7_1
ruby: '2.5'
- gemfile: active_support_7_1_redis_cache_store
ruby: '2.6'
- gemfile: active_support_7_1_redis_cache_store
ruby: '2.5'
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: '2.6'
- gemfile: active_support_7_1_redis_cache_store_pooled
ruby: '2.5'
- gemfile: rails_7_2
ruby: '3.0'
- gemfile: rails_7_2
ruby: '2.7'
- gemfile: rails_7_2
ruby: '2.6'
- gemfile: rails_7_2
ruby: '2.5'
- gemfile: active_support_7_2_redis_cache_store
ruby: '3.0'
- gemfile: active_support_7_2_redis_cache_store
ruby: '2.7'
- gemfile: active_support_7_2_redis_cache_store
ruby: '2.6'
- gemfile: active_support_7_2_redis_cache_store
ruby: '2.5'
- gemfile: active_support_7_2_redis_cache_store_pooled
ruby: '3.0'
- gemfile: active_support_7_2_redis_cache_store_pooled
ruby: '2.7'
- gemfile: active_support_7_2_redis_cache_store_pooled
ruby: '2.6'
- gemfile: active_support_7_2_redis_cache_store_pooled
ruby: '2.5'
- gemfile: rails_8_0
ruby: '3.1'
- gemfile: rails_8_0
ruby: '3.0'
- gemfile: rails_8_0
ruby: '2.7'
- gemfile: rails_8_0
ruby: '2.6'
- gemfile: rails_8_0
ruby: '2.5'
- gemfile: active_support_8_0_redis_cache_store
ruby: '3.1'
- gemfile: active_support_8_0_redis_cache_store
ruby: '3.0'
- gemfile: active_support_8_0_redis_cache_store
ruby: '2.7'
- gemfile: active_support_8_0_redis_cache_store
ruby: '2.6'
- gemfile: active_support_8_0_redis_cache_store
ruby: '2.5'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '3.1'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '3.0'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '2.7'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '2.6'
- gemfile: active_support_8_0_redis_cache_store_pooled
ruby: '2.5'
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v5
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake