Skip to content

Add test case for extra table content #1293

Add test case for extra table content

Add test case for extra table content #1293

Workflow file for this run

name: test-ruby
on:
push:
branches:
- main
- renovate/**
paths:
- ruby/**
- testdata/**
- .github/**
pull_request:
branches:
- main
paths:
- ruby/**
- testdata/**
- .github/**
workflow_call:
jobs:
test-ruby:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2']
include:
- os: macos-latest
ruby: '3.2'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
working-directory: ruby
- run: bundle exec rake
working-directory: ruby
- run: make acceptance
working-directory: ruby