Skip to content

Bump actions/checkout from 5.0.0 to 6.0.1 (#221) #449

Bump actions/checkout from 5.0.0 to 6.0.1 (#221)

Bump actions/checkout from 5.0.0 to 6.0.1 (#221) #449

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.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