github.com/d-tsuji/suffixarray@v0.0.0-20200625031310-5b0c40604e73/.circleci/config.yml (about)

     1  version: 2
     2  
     3  jobs:
     4    test:
     5      docker:
     6        # CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/
     7        - image: circleci/golang:1.14.4
     8  
     9      working_directory: /go/src/github.com/d-tsuji/suffixarray
    10  
    11      steps:
    12        - checkout
    13        - run:
    14            name: Run all unit tests
    15            command: go test -v ./...
    16  workflows:
    17    version: 2
    18    build-and-test:
    19      jobs:
    20        - test