Skip to content

Preparing for next developer iteration, 0.5.1. #63

Preparing for next developer iteration, 0.5.1.

Preparing for next developer iteration, 0.5.1. #63

Workflow file for this run

---
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
entry:
- { ruby: 3.4 }
name: test (ruby=${{ matrix.entry.ruby }})
steps:
- uses: actions/checkout@v5
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.entry.ruby }}
bundler-cache: true
- name: Run Tests
run: bundle exec rake