Skip to content

Update module gopkg.in/yaml.v3 to v3.0.1 #523

Update module gopkg.in/yaml.v3 to v3.0.1

Update module gopkg.in/yaml.v3 to v3.0.1 #523

Workflow file for this run

name: Go
on:
push:
branches: [ "main", "develop", "feature/*" ]
pull_request:
branches: [ "main" ]
env:
LOG_LEVEL: WARN
jobs:
build:
name: "Run CI"
strategy:
fail-fast: false
matrix:
os: [
"windows-latest",
"ubuntu-latest",
"macOS-latest"
]
go: ["1.19.x", "1.20.x"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Lint (gofmt)
run: gofmt -l . && echo '✔ Your code looks good.'
- name: Lint (go vet)
run: go vet -v ./...
- name: Lint golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --timeout=10m
version: v1.53
skip-pkg-cache: true
skip-build-cache: true
- name: Test
run: go test -v -coverprofile="coverage.out" ./...
- name: Coverage
run: go tool cover -func="coverage.out"
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)