feat: If you're a domain administrator or a delegated administrator, you can now include the useAdminAccess
parameter when you call the Chat API with your administrator privileges with the following methods to manage Chat spaces and memberships in yo...
#64759
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 | |
schedule: | |
- cron: "20 8 * * *" | |
workflow_dispatch: | |
inputs: | |
head: | |
description: "Commit reference at which to run tests" | |
required: false | |
base: | |
description: "Commit reference from which to evaluate diffs" | |
required: false | |
flags: | |
description: "Extra flags to pass to toys ci" | |
required: false | |
jobs: | |
CI: | |
if: ${{ github.repository == 'googleapis/google-cloud-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: "--test" | |
- os: ubuntu-latest | |
ruby: "3.3" | |
task: "--rubocop-toplevel --rubocop --build --yard --linkinator" | |
- 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 NodeJS 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
- name: Install tools | |
run: "gem install --no-document toys && npm install linkinator" | |
- name: Test ${{ matrix.task }} | |
run: | | |
toys ci -v ${{ matrix.task }} --github-event-name=${{ github.event_name }} --github-event-payload=${{ github.event_path }} ${{ github.event.inputs.flags }} | |
- name: Open Issues | |
if: ${{ failure() }} | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
toys ci report-failures --github-action-id=${{ github.run_id }} -v |