Skip to content

Bump github.com/goccy/go-yaml from 1.13.2 to 1.13.4 #619

Bump github.com/goccy/go-yaml from 1.13.2 to 1.13.4

Bump github.com/goccy/go-yaml from 1.13.2 to 1.13.4 #619

Workflow file for this run

name: Unit
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.23' ]
steps:
-
name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Test with Go
run: go test ./...
- name: Upload Go test results
uses: actions/upload-artifact@v4
with:
name: Go-results-${{ matrix.go-version }}
path: TestResults-${{ matrix.go-version }}.json