Skip to content

test: add Ruby version matrix testing for PropertyStruct #1

test: add Ruby version matrix testing for PropertyStruct

test: add Ruby version matrix testing for PropertyStruct #1

Workflow file for this run

name: ERB Renderer Ruby Tests
on: [push, pull_request]
jobs:
test_property_struct:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4', head]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
working-directory: templatescompiler/erbrenderer/
- run: bundle exec rake
working-directory: templatescompiler/erbrenderer/
continue-on-error: ${{ matrix.ruby == 'head' }}