Skip to content

fix(InHand): remove the field #7

fix(InHand): remove the field

fix(InHand): remove the field #7

Workflow file for this run

name: CI
on:
push:
paths:
- "lib/**"
- "*.gemspec"
- "spec/**"
- "Rakefile"
- "Gemfile"
pull_request:
branches:
- main
create:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 3.2
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run unit tests
run: bundle exec rake test