fix:删除无效测试

This commit is contained in:
spiritlhl 2025-11-02 14:04:12 +00:00
parent 50b411fa41
commit d8148ff279
2 changed files with 7 additions and 3 deletions

View File

@ -20,14 +20,17 @@ jobs:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./... -coverprofile=coverage.txt
run: |
# Run all tests without generating a combined coverage profile
set -euo pipefail
go test ./...
- name: Create Tag
if: success()
run: |
git config --global user.name 'github-actions'
git config --global user.email 'github-actions@github.com'
TAG="v0.0.7-$(date +'%Y%m%d%H%M%S')"
TAG="v0.0.8-$(date +'%Y%m%d%H%M%S')"
git tag $TAG
git push origin $TAG
echo "TAG=$TAG" >> $GITHUB_ENV

View File

@ -2,7 +2,7 @@ package model
import "time"
const BackTraceVersion = "v0.0.7"
const BackTraceVersion = "v0.0.8"
var EnableLoger = false
@ -17,6 +17,7 @@ type IcmpTarget struct {
var (
IcmpTargets = "https://raw.githubusercontent.com/spiritLHLS/icmp_targets/main/nodes.json"
CdnList = []string{
"https://cdn.spiritlhl.net/",
"http://cdn1.spiritlhl.net/",
"http://cdn2.spiritlhl.net/",
"http://cdn3.spiritlhl.net/",