Skip to content

Commit 9cf24db

Browse files
authored
Merge pull request #4 from gametimesf/gt-braintree
Shoot pushed to wrong branch
2 parents 2344190 + 2e07a5d commit 9cf24db

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
with:
1414
go-version: '1.20'
1515
- uses: actions/checkout@v2
16-
- name: git-access-hack
17-
# it needs access to everything
18-
run: git config --global url."https://${{ secrets.ORG_GITHUB_TOKEN }}:x-oauth-basic@github.com/gametimesf".insteadOf "https://github.com/gametimesf"
1916
- name: go-mod-download
2017
# force go to download the modules first, golangci-lint just does not do it correctly
2118
run: go mod download

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ before_install:
1818
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.2
1919
- go install github.com/daixiang0/gci@v0.3.4
2020
script:
21-
- make test
21+
- make unit

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ SHELL:=/bin/bash
22

33
test:
44
go vet ./...
5-
go test --race --cover -tags='unit' ./...
5+
go test -parallel 15 -tags='unit integration' ./...
66

77
unit:
8+
go vet ./...
89
go test --race --cover -tags=unit ./...
910

1011
integration:
12+
go vet ./...
1113
go test -parallel 15 -tags=integration ./...
1214

1315
analysis:

0 commit comments

Comments
 (0)