Skip to content

bump to 0.45.0

bump to 0.45.0 #489

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- name: "Install Go ${{env.GO_VERSION}}"
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe
with:
go-version: "${{env.GO_VERSION}}"
- name: Run tests
run: |
make unit