Skip to content

Bump github.com/goccy/go-yaml from 1.15.13 to 1.15.15 #104

Bump github.com/goccy/go-yaml from 1.15.13 to 1.15.15

Bump github.com/goccy/go-yaml from 1.15.13 to 1.15.15 #104

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverprofile cover.out ./internal/... ./pkg/...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
if: matrix.os == 'ubuntu-latest'
with:
files: ./cover.out