Skip to content

Commit bc07be0

Browse files
chore: add test step
1 parent 7c0c1bc commit bc07be0

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- run:
2525
name: run lint and tests for both services
2626
command: |
27-
scripts/test
27+
make test
2828
- run:
2929
name: build sso-auth
3030
command: |

.github/workflows/ci.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
uses: golangci/golangci-lint-action@v3
3030
continue-on-error: true
3131

32+
- name: Test
33+
run: |
34+
./scripts/test
35+
3236
- name: Build sso-auth
3337
run: |
3438
make dist/sso-auth

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ dist/sso-proxy:
1616
go build -mod=readonly -o dist/sso-proxy ./cmd/sso-proxy
1717

1818
tools:
19-
go get golang.org/x/lint/golint
2019
go get github.com/rakyll/statik
2120

2221
test:

0 commit comments

Comments
 (0)