Skip to content

Bump to 0.1.3

Bump to 0.1.3 #7

Workflow file for this run

name: Ruby
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
services:
sqlite:
image: nouchka/sqlite3
strategy:
matrix:
ruby-version: [2.4, 2.5, 2.6, 2.7, 3.0]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install -j 4 --retry 3
- name: Run tests
run: bundle exec rspec spec