Skip to content

Bump actions/checkout from 4.2.2 to 6.0.1 #105

Bump actions/checkout from 4.2.2 to 6.0.1

Bump actions/checkout from 4.2.2 to 6.0.1 #105

Workflow file for this run

---
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
os: ["ubuntu-latest", "macos-latest"]
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: ruby/setup-ruby@dffc446db9ba5a0c4446edb5bca1c5c473a806c5 # v1.235.0
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test
- run: bundle exec rake lint
- run: bundle exec rake examples