blob: 0def7788e00b2a4191f5f8e3aef2f104937d188c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.9
steps:
- checkout
# generate and build project to test
- run: curl https://raw.githubusercontent.com/ponzu-cms/ponzu/ponzu-dev/.circleci/test-setup.sh | sh
# run tests
- run: curl https://raw.githubusercontent.com/ponzu-cms/ponzu/ponzu-dev/.circleci/test-run.sh | sh
|