Skip to content

forgot to bump the version! (#72) #30

forgot to bump the version! (#72)

forgot to bump the version! (#72) #30

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
- release*
pull_request:
branches:
- main
- release*
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Setup Ruby using Bundler
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1.4"
bundler-cache: true
bundler: "2.3.6"
- name: install gems
run: bundle install
- name: test
run: bundle exec rake test