Skip to content

Update for sig version 5 and JSON request bodies #47

Update for sig version 5 and JSON request bodies

Update for sig version 5 and JSON request bodies #47

Workflow file for this run

name: Ruby CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ruby-ci:
name: Ruby CI - test
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.0, 3.1, 3.2]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Test
run: rake