Add histogram buckets to function and RBL duration metrics #138
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Unit Tests | |
on: | |
push: | |
branches: | |
- features | |
pull_request: | |
branches: | |
- features | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.23.x | |
- name: Enable Go Modules | |
run: go env -w GO111MODULE=on | |
- name: Use Vendored Dependencies | |
run: go env -w GOFLAGS=-mod=vendor | |
- name: Run Unit Tests | |
run: go test $(go list ./... | grep -v /vendor/) |