mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
This includes a bugfix to the cty/msgpack package to ensure correct decoding of unknown and null values. This also includes updates to cty's dependencies.
13 lines
199 B
YAML
13 lines
199 B
YAML
language: go
|
|
sudo: false
|
|
go:
|
|
- 1.x
|
|
- tip
|
|
install:
|
|
- go get -v github.com/golang/lint/golint
|
|
- go build ./...
|
|
script:
|
|
- go vet ./...
|
|
- $HOME/gopath/bin/golint .
|
|
- go test -v -race ./...
|