add sample circleci config

pull/24483/head
Alvin Huang 6 years ago
parent 4061cbed38
commit fd6c0d650e

@ -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:
- /.*/
Loading…
Cancel
Save