File tree 1 file changed +0
-7
lines changed
1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 22
22
outputs :
23
23
go-version : ${{ steps.go-version.outputs.go-version }}
24
24
steps :
25
- # Check out the pull request code (as opposed to the target project).
26
25
- uses : actions/checkout@v2
27
- with :
28
- ref : ${{ github.event.pull_request.head.sha }}
29
26
# Read the .go-version file and output it for other jobs to use.
30
27
- id : go-version
31
28
run : echo "::set-output name=go-version::$(cat .go-version)"
@@ -38,15 +35,11 @@ jobs:
38
35
- uses : actions/setup-go@v2
39
36
with :
40
37
go-version : ${{ needs.go-version.outputs.go-version }}
41
- # Check out the pull request code (as opposed to the target project).
42
38
- uses : actions/checkout@v2
43
- with :
44
- ref : ${{ github.event.pull_request.head.sha }}
45
39
# Cache the Go modules.
46
40
- uses : actions/cache@v2
47
41
with :
48
42
path : ~/go/pkg/mod
49
43
key : ${{ github.job }}-${{ runner.os }}-go${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum', 'GNUMakefile') }}
50
- # CAUTION: EXECUTING UNTRUSTED CODE.
51
44
- run : make testacc-up
52
45
- run : make testacc
You can’t perform that action at this time.
0 commit comments