fix:修复监控数据上报无法清理数据问题 #531
Workflow file for this run
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
# Tencent is pleased to support the open source community by making polaris-go available. | |
# | |
# Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved. | |
# | |
# Licensed under the BSD 3-Clause License (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://opensource.org/licenses/BSD-3-Clause | |
# | |
# Unless required by applicable law or agreed to in writing, software distributed | |
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | |
# CONDITIONS OF ANY KIND, either express or implied. See the License for the | |
# specific language governing permissions and limitations under the License. | |
name: Go | |
on: | |
push: | |
branches: | |
- main | |
- feature/** | |
pull_request: | |
branches: | |
- main | |
- feature/** | |
permissions: | |
contents: write | |
# Always force the use of Go modules | |
env: | |
GO111MODULE: on | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# strategy set | |
strategy: | |
matrix: | |
go: ["1.15", "1.16", "1.17", "1.18", "1.19", "1.20"] | |
steps: | |
# Setup the environment. | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
# Checkout latest code | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
# Execute vert check | |
# - name: vert check | |
# run: bash vert.sh -install && bash vert.sh | |
# Run tests | |
- name: run tests | |
run: | | |
set -ex # Exit on error; debugging enabled. | |
set -o pipefail # Fail a pipe if any sub-command fails. | |
cd ./test | |
for line in $(cat suit.txt) | |
do | |
if [[ "${line}" == "" ]]; then | |
continue | |
fi | |
export SDK_SUIT_TEST=${line} | |
echo "SDK_SUIT_TEST=${SDK_SUIT_TEST}" | |
go test -timeout=240m -v -covermode=count -coverprofile=coverage_${line}.txt -coverpkg=github.com/polarismesh/polaris-go/api,github.com/polarismesh/polaris-go/pkg,github.com/polarismesh/polaris-go/plugin | |
done | |
- name: Coverage | |
run: bash <(curl -s https://codecov.io/bash) |