Skip to content

chore(deps): update dependency httparty to "~> 0.22.0" #268

chore(deps): update dependency httparty to "~> 0.22.0"

chore(deps): update dependency httparty to "~> 0.22.0" #268

Workflow file for this run

name: build
on: ["push", "pull_request"]
jobs:
test:
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false # don't fail all matrix builds if one fails
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake spec