Skip to content

Merge pull request #6 from wrapbook/jlaw/chore/replace-exponentially-… #19

Merge pull request #6 from wrapbook/jlaw/chore/replace-exponentially-…

Merge pull request #6 from wrapbook/jlaw/chore/replace-exponentially-… #19

Workflow file for this run

name: Tests (Ruby)
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version:
- 3.0
- 3.1
- 3.2
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- name: Ruby version
run: ruby -v
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec