-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathwercker.yml
More file actions
30 lines (28 loc) · 738 Bytes
/
wercker.yml
File metadata and controls
30 lines (28 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
box: golang
# Build definition
build:
# The steps that will be executed on build
steps:
# Lint the project
- install-packages:
packages: libssl-dev
- script:
name: go lint
code: |
go get -u github.com/golang/lint/golint && golint
# Test the project
- script:
name: go get
code: |
go get github.com/xeodou/go-sqlcipher/sqlite3_test
# Test the project
- script:
name: go test
code: |
go test
# A custom script step, name value is used in the UI
# and the code value contains the command that get executed
- script:
name: echo golang information
code: |
echo "$(go version) running"