feat: Automated regeneration of apigee v1 client (#24709) #41904
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| CI: | |
| if: ${{ github.repository == 'googleapis/google-api-ruby-client' }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| ruby: "3.1" | |
| task: "--include-spec" | |
| - os: ubuntu-latest | |
| ruby: "3.2" | |
| task: "--include-spec" | |
| - os: ubuntu-latest | |
| ruby: "3.3" | |
| task: "--include-spec" | |
| - os: ubuntu-latest | |
| ruby: "3.4" | |
| task: "--include-spec --include-yardoc --include-build" | |
| rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal" | |
| - os: macos-latest | |
| ruby: "3.4" | |
| task: "--include-spec" | |
| - os: windows-latest | |
| ruby: "3.4" | |
| task: "--include-spec" | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Install Ruby ${{ matrix.ruby }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "${{ matrix.ruby }}" | |
| - name: Install tools | |
| run: | | |
| gem install --no-document toys | |
| - name: Hack perms | |
| # Hack permissions to avoid a bundler issue. | |
| # See https://github.com/actions/runner-images/issues/10215 | |
| # and https://github.com/rubygems/rubygems/issues/7983. | |
| shell: bash | |
| run: | | |
| if [ -d /opt/hostedtoolcache/Ruby ]; then | |
| chmod -R o-w /opt/hostedtoolcache/Ruby | |
| fi | |
| - name: Test ${{ matrix.task }} ${{ matrix.rubyopt }} | |
| run: | | |
| toys ci -v --only ${{ matrix.task }} --github-event-name=${{ github.event_name }} --github-event-payload=${{ github.event_path }} | |
| env: | |
| RUBYOPT: "${{ matrix.rubyopt }}" |