Skip to content

Enhance JSON unmarshaling for Operation fields to enforce string type… #3

Enhance JSON unmarshaling for Operation fields to enforce string type…

Enhance JSON unmarshaling for Operation fields to enforce string type… #3

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: 1.23
cache-dependency-path: "**/*.sum"
- name: Install dependencies
run: go mod download
- name: Test with Go
run: go test . -json > TestResults.json
- name: Upload Go test results
uses: actions/upload-artifact@v6
with:
name: Go-results
path: TestResults.json