Add method to retrieve map[string]map[string]string types #62
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
go: ['1.17', '1.18'] | |
env: | |
VERBOSE: 1 | |
GOFLAGS: -mod=readonly | |
GOPROXY: https://proxy.golang.org | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# the DataDog fork of this repository has many lint failures | |
# - name: Lint | |
# run: make lint | |
- name: Test | |
run: make test |