Skip to content

Updated the version of Ruby being run on CI to the latest state. #11

Updated the version of Ruby being run on CI to the latest state.

Updated the version of Ruby being run on CI to the latest state. #11

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: install dependencies
run: bundle install --jobs 3 --retry 3
- name: test
run: bundle exec rake test