File tree 2 files changed +8
-12
lines changed
2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 13
13
PASSAGE_AUTH_TOKEN : ${{ secrets.PASSAGE_AUTH_TOKEN }}
14
14
15
15
jobs :
16
+ run-test-workflow :
17
+ uses : ./.github/workflows/on-pull-request.yml
18
+
16
19
build :
17
20
name : Create Release
18
21
runs-on : ubuntu-latest
19
22
steps :
20
- - name : Install Go
21
- uses : actions/setup-go@v4
22
- with :
23
- go-version : ' 1.20.14'
24
-
25
- - name : Checkout code
26
- uses : actions/checkout@v2
27
-
28
- - name : Test
29
- run : go test ./...
30
-
31
23
- name : Checkout code
32
24
uses : actions/checkout@v2
33
25
with :
Original file line number Diff line number Diff line change 1
1
name : Run Tests
2
2
3
- on :
3
+ on :
4
+ workflow_call :
4
5
workflow_dispatch :
5
6
pull_request :
6
7
26
27
27
28
- name : Test
28
29
run : go test ./...
30
+
31
+ - name : Test with race detector
32
+ run : go test -race -run TestAppJWKSCacheWriteConcurrency
You can’t perform that action at this time.
0 commit comments