fix: add support custom types on unmarshal #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Development Workflow | |
on: | |
pull_request: | |
types: [edited, synchronize, opened, reopened] | |
branches: | |
- main | |
jobs: | |
testing: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21.x | |
- name: Set GOBIN | |
run: go env -w GOBIN=/usr/local/bin | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
go mod download | |
- name: Tests | |
run: go test -v |