Skip to content

bump to 0.49.0

bump to 0.49.0 #499

Workflow file for this run

name: Go
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
GO_VERSION: "1.20"
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
- name: "Install Go ${{env.GO_VERSION}}"
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: "${{env.GO_VERSION}}"
- name: Run tests
run: |
make unit