github.com/lrita/numa@v1.0.2/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - 1.13.x
     5    - 1.14.x
     6    - 1.15.x
     7    - 1.16.x
     8    - 1.17.x
     9    - 1.18.x
    10  
    11  # let us have speedy Docker-based Travis workers
    12  sudo: true
    13  
    14  script:
    15    - go vet ./...
    16    - go test -v -race -coverprofile=coverage.txt -covermode=atomic
    17  
    18  after_success:
    19    - bash <(curl -s https://codecov.io/bash)