Skip to content

Load test observability: automated regression detection framework #573

Load test observability: automated regression detection framework

Load test observability: automated regression detection framework #573

Workflow file for this run

# Copyright 2022 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.
# Checks to run whenever there is a Go PR. Currently, we only write Go code
# for CI/CD purposes, so the jobs tend to lighter-weight than Java PRs
# are.
name: Go PR
on:
pull_request:
branches:
- 'main'
paths:
- 'cicd/**'
- '.github/workflows/go-pr.yml'
permissions: read-all
jobs:
check_formatting:
name: Go FMT
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4.0.0
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: '1.21'
- name: Run Fmt
run: |
cd cicd
if [[ $(go fmt ./...) != "" ]]; then
echo 'There were formatting violations'
exit 1
fi
build_and_tests:
name: Build and Test
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4.0.0
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: '1.21'
# By nature, this also makes sure that everything builds
- name: Run Tests
run: |
cd cicd
go test ./...