Skip to content
This repository was archived by the owner on Jul 22, 2020. It is now read-only.

Commit 418b3cc

Browse files
author
Yevgeny Pats
committed
Add circleci example
1 parent 1a2499f commit 418b3cc

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.circleci/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2.1
2+
orbs:
3+
fuzzit: fuzzitdev/fuzzit@dev:alpha
4+
jobs: # basic units of work in a run
5+
build: # runs not using Workflows must have a `build` job as entry point
6+
docker: # run the steps with Docker
7+
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/
8+
- image: circleci/golang:1.12
9+
# directory where steps are run. Path must conform to the Go Workspace requirements
10+
working_directory: /go/src/github.com/fuzzitdev/example-go
11+
12+
steps: # steps that comprise the `build` job
13+
- checkout # check out source code to working directory
14+
- fuzzit/fuzzing

0 commit comments

Comments
 (0)