Sean's blog

Software Engineer

  • Home
  • About
  • Tags69
  • Categories0
  • Archives48
  • Search
  • Table of Contents
  • Overview
  1. 1. Installation
  2. 2. Setup
  3. 3. Examples

Sean Zheng

48 posts
69 tags

How to use Travis CI

Posted on 2021-01-11 Views:
如何使用 Travis CI

Travis CI

Installation

1
brew install travis

Setup

1
travis login --pro

Examples

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# .travis.yml
language: go

go:
- '1.15'

git:
submodules: false

cache:
directories:
- "$HOME/.cache/go-build"
- "$HOME/gopath/pkg/mod"

env:
global:
- GO111MODULE=on

script:
- go test -v ./...
# howto # travis # cicd
How to use terraform cloud
how to install kubernetes on raspberry
© 1992 – 2023 Sean Zheng
Powered by Hexo & NexT.Pisces
0%