Skip to content

Commit 4cf823b

Browse files
authored
fix: fixes release smoke tests (#269)
1 parent 80a3a1b commit 4cf823b

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

.github/workflows/release-check.yml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,27 @@ on:
66

77
jobs:
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

0 commit comments

Comments
 (0)