Skip to content

chore: bump to go1.21.4 #8

chore: bump to go1.21.4

chore: bump to go1.21.4 #8

Workflow file for this run

name: CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Generate
run: go generate -v ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...