Skip to content

Merge pull request #89 from Invoca/frozen_string_literal-and-locale-r… #61

Merge pull request #89 from Invoca/frozen_string_literal-and-locale-r…

Merge pull request #89 from Invoca/frozen_string_literal-and-locale-r… #61

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
ruby_version: [3.3, 3.2, 3.1]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
bundle exec rubocop