Skip to content

Commit d053275

Browse files
committed
Add CircleCI config
1 parent 54cd8d6 commit d053275

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.circleci/config.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
executors:
2+
custom:
3+
docker:
4+
- image: cimg/go:1.15
5+
6+
version: 2.1
7+
8+
jobs:
9+
lint:
10+
executor: custom
11+
steps:
12+
- checkout
13+
14+
- run:
15+
name: Run lint checks
16+
command: echo "Will run lint checks once there are lint checks to run"
17+
18+
workflows:
19+
version: 2
20+
build:
21+
jobs:
22+
- lint:
23+
filters:
24+
tags:
25+
only: /.*/

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Settings files for JetBrains IDEs
2+
.idea

0 commit comments

Comments
 (0)