Skip to content

Allow use td-client v2.0+ #25

Allow use td-client v2.0+

Allow use td-client v2.0+ #25

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
ruby:
- 2.3.1
- 2.4.1
- 2.5.9
- 2.6.9
- 2.7.5
- 3.0.3
- 3.1.0
- head
# TODO: Add jruby
include:
- os: windows-latest
ruby: 2.7.5
- os: macos-latest
ruby: 2.7.5
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake spec