File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1818 steps :
1919 - uses : actions/checkout@v2
2020 - name : Install Go
21- uses : actions/setup-go@v1
21+ uses : actions/setup-go@v2
2222 with :
2323 go-version : ${{ matrix.golang }}
2424 - name : Run tests on Windows
3737 steps :
3838 - uses : actions/checkout@v2
3939 - name : Install Go
40- uses : actions/setup-go@v1
40+ uses : actions/setup-go@v2
4141 with :
4242 go-version : ${{ matrix.golang }}
43+ - uses : actions/cache@v1
44+ with :
45+ path : ~/go/pkg/mod
46+ key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
47+ restore-keys : |
48+ ${{ runner.os }}-go-
4349 - name : Run tests on Unix-like operating systems
4450 run : make test
4551 check_generated :
4955 - name : Unshallow
5056 run : git fetch --prune --unshallow
5157 - name : Install Go
52- uses : actions/setup-go@v1
58+ uses : actions/setup-go@v2
5359 with :
5460 go-version : 1.14
5561 - name : Check if README.md is up to date
You can’t perform that action at this time.
0 commit comments