Skip to content

fix(generator): escape multi-line braces and backtick unknown doc tag… #2763

fix(generator): escape multi-line braces and backtick unknown doc tag…

fix(generator): escape multi-line braces and backtick unknown doc tag… #2763

Workflow file for this run

permissions:
contents: read
name: "CI tests"
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
env:
MT_COMPAT: true
jobs:
tests:
if: ${{ github.repository == 'googleapis/gapic-generator-ruby' }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.2", "4.0"]
# Allow failures on 4.0; generator primarily runs on 3.2.
continue-on-error: ${{ matrix.ruby == '4.0' }}
steps:
- name: Install Ruby
uses: ruby/setup-ruby@0dafeac902942906541bc140009cdbf32665b601 # v1.315.0
with:
ruby-version: ${{ matrix.ruby }}
- name: Checkout repo
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
with:
persist-credentials: false
- name: Checkout submodules
run: |
git submodule set-url shared/googleapis https://github.com/googleapis/googleapis.git
git submodule set-url shared/gapic-showcase https://github.com/googleapis/gapic-showcase.git
git submodule update --init --recursive
- name: Install dependencies
run: |
gem install --no-document toys
toys bundle install
- name: Run CI
run: |
toys ci