Skip to content

[set] Set should error when it cannot correctly marshal JSON #84

[set] Set should error when it cannot correctly marshal JSON

[set] Set should error when it cannot correctly marshal JSON #84

Workflow file for this run

name: go ci build
"on":
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Install go dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: go test ./... -cover -json > TestResults.json
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}