File tree Expand file tree Collapse file tree 1 file changed +20
-6
lines changed Expand file tree Collapse file tree 1 file changed +20
-6
lines changed Original file line number Diff line number Diff line change 66
77jobs :
88 tests :
9- name : Release sanity tests
10- runs-on : ubuntu-20.04
9+ name : Release smoke tests
10+ runs-on : ubuntu-latest
11+ strategy :
12+ matrix :
13+ golang :
14+ - 1.17
1115 steps :
12- - uses : actions/checkout@v2.3.4
13-
16+ - name : Checkout repository
17+ uses : actions/checkout@v2
18+ - name : Install Go
19+ uses : actions/setup-go@v2
20+ with :
21+ go-version : ${{ matrix.golang }}
22+ - name : Cache Dependencies
23+ uses : actions/cache@v2
24+ with :
25+ path : ~/go/pkg/mod
26+ key : ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
27+ restore-keys : |
28+ ${{ runner.os }}-go-${{ matrix.golang }}-
1429 - name : Checking code health
15- run : make tools lint test
16-
30+ run : make test
1731 - name : Checking the version
1832 run : make check-version
You can’t perform that action at this time.
0 commit comments