Skip to content

feat(metrics): implement metrics for kubernetes and hazelcast data-count #27

feat(metrics): implement metrics for kubernetes and hazelcast data-count

feat(metrics): implement metrics for kubernetes and hazelcast data-count #27

Workflow file for this run

# Copyright 2024 Deutsche Telekom IT GmbH
#
# SPDX-License-Identifier: Apache-2.0
name: Go Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
services:
docker:
image: docker:20.10.12-dind
ports:
- 5701:5701
- 27017:27017
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
- name: Run go test
run: go test -v ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./... -tags=testing