This commit is contained in:
@@ -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
|
||||
@@ -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 .
|
||||
Reference in New Issue
Block a user