We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0c1bc commit bc07be0Copy full SHA for bc07be0
.circleci/config.yml
@@ -24,7 +24,7 @@ jobs:
24
- run:
25
name: run lint and tests for both services
26
command: |
27
- scripts/test
+ make test
28
29
name: build sso-auth
30
.github/workflows/ci.yaml
@@ -29,6 +29,10 @@ jobs:
uses: golangci/golangci-lint-action@v3
continue-on-error: true
31
32
+ - name: Test
33
+ run: |
34
+ ./scripts/test
35
+
36
- name: Build sso-auth
37
run: |
38
make dist/sso-auth
Makefile
@@ -16,7 +16,6 @@ dist/sso-proxy:
16
go build -mod=readonly -o dist/sso-proxy ./cmd/sso-proxy
17
18
tools:
19
- go get golang.org/x/lint/golint
20
go get github.com/rakyll/statik
21
22
test:
0 commit comments