Skip to content

use quotes for ruby versions #268

use quotes for ruby versions

use quotes for ruby versions #268

Workflow file for this run

name: Ruby CI
on: [push]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
ruby-version: ['3.0', '2.7']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec