Skip to content

Commit

Permalink
✅ Rename CI matrix.ruby-version => matrix.ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
nevans committed May 16, 2024
1 parent 8f2d696 commit 4762cfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ on: [push, workflow_dispatch]
jobs:
build:
name: >-
${{ matrix.os }} ${{ matrix.ruby-version }} ${{ matrix.gemfile }}
${{ matrix.os }} ${{ matrix.ruby }} ${{ matrix.gemfile }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04 ]
ruby-version: [ "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3" ]
ruby: [ "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3" ]
gemfile:
- resque_1.22_redis_2.0
- resque_1.23_redis_3.0
Expand All @@ -28,7 +28,7 @@ jobs:
- resque_2.6_redis_5.2
include:
- os: ubuntu-20.04
ruby-version: "3.3"
ruby: "3.3"
gemfile: resque_2.6_redis_5.2

services:
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: sudo apt-get install redis-server
- name: Run specs
Expand Down

0 comments on commit 4762cfa

Please sign in to comment.