add sample circleci config

This commit is contained in:
Alvin Huang 2020-03-27 12:48:57 -04:00
parent 4061cbed38
commit fd6c0d650e
1 changed files with 17 additions and 0 deletions

17
.circleci/config.yml Normal file
View File

@ -0,0 +1,17 @@
version: 2.1
jobs:
build:
docker:
- image: circleci/golang:1.14
steps:
- run: echo "hello world"
workflows:
version: 2
sample:
jobs:
- build:
filters:
branches:
ignore:
- /.*/