Skip to content

chore(deps): update dependency phpunit/phpunit to v12 #1604

chore(deps): update dependency phpunit/phpunit to v12

chore(deps): update dependency phpunit/phpunit to v12 #1604

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: ['3.2', '3.3', '3.4']
include:
- os: macos-latest
ruby: '3.4'
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