chore(release): Temporarily ignore docuploader creds from secret manager #903
Workflow file for this run
This file contains 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/ruby-common-tools' }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
ruby: "3.3" | |
build: false | |
jobs: "--only --rubocop" | |
- os: ubuntu-latest | |
ruby: "3.1" | |
build: true | |
jobs: "--only --test" | |
- os: ubuntu-latest | |
ruby: "3.3" | |
build: true | |
jobs: "--only --test" | |
- os: ubuntu-latest | |
ruby: "3.4" | |
build: true | |
jobs: "--only --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 NodeJS 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
- name: Install tools and deps | |
shell: bash | |
run: "gem install --no-document toys && bundle install" | |
- name: Build | |
if: ${{ matrix.build }} | |
shell: bash | |
run: toys ci build -v < /dev/null | |
- name: Test | |
shell: bash | |
run: toys ci ${{ matrix.jobs }} < /dev/null |