Skip to content

fix(deps): update module github.com/goccy/go-yaml to v1.15.16 (#123) #396

fix(deps): update module github.com/goccy/go-yaml to v1.15.16 (#123)

fix(deps): update module github.com/goccy/go-yaml to v1.15.16 (#123) #396

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
env:
# renovate: datasource=golang-version depName=golang
GO_VERSION: '1.23.5'
# renovate: datasource=github-releases depName=golangci/golangci-lint
GOLANGCI_LINT_VERSION: 'v1.63.4'
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
with:
go-version: '${{ env.GO_VERSION }}'
id: go
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -cover ./...
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5
with:
go-version: '${{ env.GO_VERSION }}'
id: go
- name: golangci-lint
uses: golangci/golangci-lint-action@ec5d18412c0aeab7936cb16880d708ba2a64e1ae # v6
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}