diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 40733e2..b3214ff 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -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 @@ -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: @@ -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