Skip to content

Merge pull request #186 from Shopify/chore_use-patch-not-post #382

Merge pull request #186 from Shopify/chore_use-patch-not-post

Merge pull request #186 from Shopify/chore_use-patch-not-post #382

Workflow file for this run

---
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ "3.0", "3.1", "3.2", "3.3" ]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: ruby/setup-ruby@efbf473cab83af4468e8606cc33eca9281bb213f # v1.256.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install and start toxiproxy
run: ./bin/start-toxiproxy.sh
- name: Run tests
run: bundle exec rake test