Skip to content

Fix Response.identifier not being set if there are missing terms #46

Fix Response.identifier not being set if there are missing terms

Fix Response.identifier not being set if there are missing terms #46

Workflow file for this run

name: CI
on: [pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.2', '3.1', '3.0']
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Lint
run: |
bundle exec rubocop
- name: Run tests
run: |
bundle exec rake