Skip to content

metric: add stateful stats #16

metric: add stateful stats

metric: add stateful stats #16

Workflow file for this run

name: Go package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go 1.20.x
uses: actions/setup-go@v4
with:
# Semantic version range syntax or exact version of Go
go-version: '1.20.x'
- name: Install dependencies
run: |
go mod vendor
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...