Skip to content

Adds prettify support for quoted UTF8 label and metric names (#43) #9

Adds prettify support for quoted UTF8 label and metric names (#43)

Adds prettify support for quoted UTF8 label and metric names (#43) #9

Workflow file for this run

name: main
on:
- push
- pull_request
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: stable
id: go
- name: Code checkout
uses: actions/checkout@v4
- name: Test
run: |
go test -v ./... -coverprofile=coverage.txt -covermode=atomic
- name: Publish coverage
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
files: ./coverage.txt