Skip to content

Update README.md

Update README.md #175

Workflow file for this run

name: Go
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Golangci-lint
uses: golangci/golangci-lint-action@v6
- name: Build
run: make build
- name: Test
run: make test
- name: E2E test
run: make e2e-test