Skip to content

Commit e5f27c1

Browse files
1.0.0 (plaid#190)
1 parent 0d3f02c commit e5f27c1

File tree

490 files changed

+135561
-4524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

490 files changed

+135561
-4524
lines changed

.circleci/config.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
version: 2
2+
23
jobs:
34
build:
4-
docker:
5-
- image: circleci/golang:1.9
6-
working_directory: /go/src/github.com/plaid/plaid-go
5+
machine: true
76
steps:
8-
- checkout
9-
- run: make setup test lint
7+
- checkout
8+
- run:
9+
name: Build Docker image for running go tests
10+
command: docker build -t plaid-go .
11+
- run:
12+
name: Run go tests in Docker
13+
command: docker run --rm -e CLIENT_ID=$CLIENT_ID -e SECRET=$SECRET plaid-go

.dockerignore

Whitespace-only changes.

.github/workflows/add_to_project.yml

-21
This file was deleted.

.gitignore

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
1-
.DS_Store
2-
vendor
3-
bin
1+
# Compiled Object files, Static and Dynamic libs (Shared Objects)
2+
*.o
3+
*.a
4+
*.so
45

5-
go.mod
6-
go.sum
7-
.idea
6+
# Folders
7+
_obj
8+
_test
9+
10+
# Architecture specific extensions/prefixes
11+
*.[568vq]
12+
[568vq].out
13+
14+
*.cgo1.go
15+
*.cgo2.c
16+
_cgo_defun.c
17+
_cgo_gotypes.go
18+
_cgo_export.*
19+
20+
_testmain.go
21+
22+
*.exe
23+
*.test
24+
*.prof

.openapi-generator-ignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.gitignore
2+
.travis.yml
3+
README.md
4+
go.mod
5+
go.sum

0 commit comments

Comments
 (0)