test(generator/rust): add IAM RPCs to golden files #377
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
# Copyright 2024 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Client Generator | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
generator-build: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
go-version: ['1.23'] | |
defaults: | |
run: | |
working-directory: generator | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install protoc | |
run: | | |
set -e | |
curl -fSSL -o /tmp/protoc.zip https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-x86_64.zip | |
cd /usr/local | |
sudo unzip -x /tmp/protoc.zip | |
protoc --version | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache-dependency-path: | | |
generator/go.sum | |
- name: Display Go version | |
run: go version | |
- run: go fmt ./... | |
- run: go test ./... | |
- name: Detect Changes | |
run: git diff --exit-code | |
format-protos: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fix Proto files Formatting | |
run: | | |
git ls-files -z -- '*.proto' ':!:**/testdata/googleapis/**' | \ | |
xargs -0 -r -P "$(nproc)" -n 50 clang-format | |
- name: Detect Changes | |
run: git diff --exit-code |