github.com/algorand/go-algorand-sdk@v1.24.0/.circleci/config.yml (about)

     1  version: 2.1
     2  
     3  orbs:
     4    go: circleci/go@1.7.1
     5  
     6  workflows:
     7    circleci_build_and_test:
     8      jobs:
     9        - test:
    10            name: 'test_go_<< matrix.go_version >>'
    11            matrix:
    12              parameters:
    13                go_version: ['1.17']
    14  
    15  jobs:
    16    test:
    17      machine:
    18        image: "ubuntu-2004:202104-01"
    19      parameters:
    20        go_version:
    21          type: string
    22      steps:
    23        - checkout
    24        - go/install:
    25            version: << parameters.go_version >>
    26        - run: |
    27            go version
    28            go get -u golang.org/x/lint/golint
    29            make docker-test