mirror of
https://github.com/spf13/viper
synced 2025-05-11 22:57:21 +00:00
12 lines
226 B
YAML
12 lines
226 B
YAML
|
version: 2
|
||
|
jobs:
|
||
|
build:
|
||
|
docker:
|
||
|
- image: circleci/golang:1.12
|
||
|
environment:
|
||
|
- GO111MODULE=on
|
||
|
working_directory: /go/src/github.com/ory/viper
|
||
|
steps:
|
||
|
- checkout
|
||
|
- run: go test -race -v ./...
|