Skip to content

release prep version 0.37.0 (#539) #41

release prep version 0.37.0 (#539)

release prep version 0.37.0 (#539) #41

Workflow file for this run

on:
push:
tags:
- v0.*.*
- v1.*.*
jobs:
tests:
name: Release smoke tests
runs-on: ubuntu-latest
strategy:
matrix:
golang:
- 1.20
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.golang }}
- name: Cache Dependencies
uses: actions/cache@v4
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 test
- name: Checking the version
run: make check-version