forked from xeodou/go-sqlcipher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwercker.yml
More file actions
28 lines (26 loc) · 693 Bytes
/
wercker.yml
File metadata and controls
28 lines (26 loc) · 693 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
box: wercker/golang
# Build definition
build:
# The steps that will be executed on build
steps:
# Lint the project
- 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"