...

Text file src/github.com/ory/viper/.circleci/config.yml

Documentation: github.com/ory/viper/.circleci

     1version: 2.1
     2
     3orbs:
     4  nancy: ory/nancy@0.0.9
     5
     6jobs:
     7  test:
     8    docker:
     9      -
    10        image: circleci/golang:1.12
    11        environment:
    12          - GO111MODULE=on
    13    working_directory: /go/src/github.com/ory/viper
    14    steps:
    15      - checkout
    16      -
    17        run: go test -race -v ./...
    18
    19workflows:
    20  tbr:
    21    jobs:
    22      - nancy/test
    23      - test

View as plain text