Skip to content

- Fix CI pipeline #2

- Fix CI pipeline

- Fix CI pipeline #2

Workflow file for this run

name: Go Build and Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22.0
- name: Build
run: go build -v ./...
- name: Test
run: go test ./... -cover -coverprofile coverage.out -race -mod=vendor -v