Skip to content

Merge pull request #7 from taketo1113/ci-ruby-3.4 #27

Merge pull request #7 from taketo1113/ci-ruby-3.4

Merge pull request #7 from taketo1113/ci-ruby-3.4 #27

Workflow file for this run

name: Ruby
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} / Rack ${{ matrix.rack_version }}
strategy:
matrix:
ruby:
- '3.4'
- '3.3'
- '3.2'
- '3.1'
- '3.0'
- '2.7'
rack_version: ['3', '2']
env:
RACK_VERSION: ${{ matrix.rack_version }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake