Skip to content

build(deps): bump actions/checkout from 6.0.2 to 6.0.3 #868

build(deps): bump actions/checkout from 6.0.2 to 6.0.3

build(deps): bump actions/checkout from 6.0.2 to 6.0.3 #868

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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: '1.25'
- 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: '1.25'
# By nature, this also makes sure that everything builds
- name: Run Tests
run: |
cd cicd
go test ./...