Skip to content

Commit

Permalink
fix: fixes release smoke tests (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
gssbzn authored Nov 19, 2021
1 parent 80a3a1b commit 4cf823b
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/release-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,27 @@ on:

jobs:
tests:
name: Release sanity tests
runs-on: ubuntu-20.04
name: Release smoke tests
runs-on: ubuntu-latest
strategy:
matrix:
golang:
- 1.17
steps:
- uses: actions/checkout@v2.3.4

- name: Checkout repository
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.golang }}
- name: Cache Dependencies
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.golang }}-
- name: Checking code health
run: make tools lint test

run: make test
- name: Checking the version
run: make check-version

0 comments on commit 4cf823b

Please sign in to comment.