Skip to content

Initial scaffold of the cryptohopper Ruby SDK #1

Initial scaffold of the cryptohopper Ruby SDK

Initial scaffold of the cryptohopper Ruby SDK #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
ruby: ["3.2", "3.3"]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: RSpec
run: bundle exec rspec
- name: RuboCop
run: bundle exec rubocop --fail-level W