Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

fix(deps): update module gopkg.in/yaml.v2 to v3 #326

fix(deps): update module gopkg.in/yaml.v2 to v3

fix(deps): update module gopkg.in/yaml.v2 to v3 #326

Workflow file for this run

# name of the action
name: validate
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@v4
- name: install go
uses: actions/setup-go@v5
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: validate
run: |
# Check that go mod tidy produces a zero diff; clean up any changes afterwards.
go mod tidy && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go vet ./... produces a zero diff; clean up any changes afterwards.
go vet ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go fmt ./... produces a zero diff; clean up any changes afterwards.
go fmt ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go generate ./... produces a zero diff; clean up any changes afterwards.
go generate -x ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)