fix: Added logger methods to generated dummy stub classes in generate… #1254
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI gapic-common | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| env: | |
| MT_COMPAT: true | |
| jobs: | |
| CI: | |
| if: ${{ github.repository == 'googleapis/gapic-generator-ruby' }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| ruby: "3.0" | |
| task: test | |
| - os: ubuntu-latest | |
| ruby: "3.1" | |
| task: test | |
| - os: ubuntu-latest | |
| ruby: "3.2" | |
| task: test | |
| - os: ubuntu-latest | |
| ruby: "3.3" | |
| task: ci | |
| - os: macos-latest | |
| ruby: "3.3" | |
| task: test | |
| - os: windows-latest | |
| ruby: "3.3" | |
| task: test | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install Ruby ${{ matrix.ruby }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "${{ matrix.ruby }}" | |
| - name: Install dependencies | |
| shell: bash | |
| run: | | |
| gem install --no-document toys | |
| cd gapic-common && bundle install | |
| - name: Run ${{ matrix.task }} | |
| shell: bash | |
| run: | | |
| cd gapic-common && toys ${{ matrix.task }} |