Sha256: 638b805cfa613cc0dbd7702b3624274d7b4f4e7629b53333dfb983bb647e9967
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
name: CI on: pull_request: push: branches-ignore: [master] tags-ignore: [v*] concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: test: name: "test (ruby: ${{ matrix.ruby }}, redis.rb: ${{ matrix.redis }})" runs-on: ubuntu-latest continue-on-error: ${{ contains(matrix.ruby, 'head') }} strategy: fail-fast: false matrix: ruby: - "2.7" - "3.0" - "3.1" - "3.2" - "3.3" # - 'head' - "jruby" # - 'jruby-head' - "truffleruby" # - 'truffleruby-head' redis: - 4_0_x - 4_1_x - 4_x - 5_x env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/redis_${{ matrix.redis }}.gemfile services: redis: image: redis ports: - 6379:6379 distributed1: image: redis ports: - 6380:6380 distributed2: image: redis ports: - 6381:6381 steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: ruby/setup-ruby@v1 with: ruby-version: 3.3 bundler-cache: true - run: bundle exec rake lint
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
redis-store-1.11.0 | .github/workflows/ci.yml |