Skip to content

feat(cli.go): replace json.Marshal with custom jsonMarshal function t… #107

feat(cli.go): replace json.Marshal with custom jsonMarshal function t…

feat(cli.go): replace json.Marshal with custom jsonMarshal function t… #107

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.20
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: go test -v ./...