Skip to content

Update go to 1.21

Update go to 1.21 #59

Workflow file for this run

name: Tests
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.21.6"
- name: build
run: make build
- name: test
run: make test-integration