Skip to content

ci: add Ruby 2.5, 2.6 and 2.7 #142

ci: add Ruby 2.5, 2.6 and 2.7

ci: add Ruby 2.5, 2.6 and 2.7 #142

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
run:
strategy:
fail-fast: false
matrix:
ruby-version:
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- head
- truffleruby-head
runs-on:
- ubuntu-latest
- macos-latest
- windows-latest
exclude:
- { ruby-version: truffleruby-head, runs-on: windows-latest }
name: ${{ matrix.ruby-version}} on ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Test
run: |
bundle exec rake