Skip to content

Add a Collector for our runtime metrics #144

Add a Collector for our runtime metrics

Add a Collector for our runtime metrics #144

Workflow file for this run

name: ci
on:
- push
- pull_request
jobs:
tests:
strategy:
matrix:
go: ["1.24"]
os: [ubuntu, macos]
runs-on: ${{ matrix.os }}-latest
name: go${{ matrix.go }}-${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go mod download
- run: go build
- run: make lint
- run: make test test-race