Skip to content

Setting go version to 1.21.3 #226

Setting go version to 1.21.3

Setting go version to 1.21.3 #226

Workflow file for this run

name: ci
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
# Go version needs to be the same in: CI config, README, Dockerfiles, and Makefile
go-version: 1.21.3
- name: Install Goveralls
run: go get -v github.com/mattn/goveralls
- name: Setup CI
run: make setup-ci
- name: Test
run: |
make check-fmt
make build-all
make check
make test-race
make bench-race