chore: import upstream snapshot with attribution
Go / Build (push) Failing after 1s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:30:21 +08:00
commit a21fa4e11b
927 changed files with 832358 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
---
name: Issue 模版
about: 请尽量按照模版去创建 Issue
title: ''
labels: ''
assignees: ''
---
xxxxx这里是问题描述xxxx
1. 当前使用的版本号
vx.x.x
2. 是否已经升级到新版本
xxx
3. 当前遇到的问题
xxx
4. 错误日志或截图
xxx
5. 希望增加的功能
xxx
+28
View File
@@ -0,0 +1,28 @@
name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v .