go.dedis.ch/onet/v4@v4.0.0-pre1/.travis.yml (about)

     1  language: go
     2  
     3  go:
     4    - "1.11.x"
     5  
     6  go_import_path: go.dedis.ch/onet/v4
     7  
     8  script:
     9    - env GO111MODULE=on make test
    10  
    11  matrix:
    12    include:
    13      - name: "64-bit Unit Tests"
    14        env: GOARCH=amd64
    15      - name: "32-bit Unit Tests"
    16        env: GOARCH=386
    17  
    18  notifications:
    19    email: false
    20  
    21  # https://restic.net/blog/2018-09-02/travis-build-cache
    22  cache:
    23    directories:
    24      - $HOME/.cache/go-build
    25      - $GOPATH/pkg/mod