generated from cloudwego/.github
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 72e2843
Showing
14 changed files
with
640 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
|
||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
|
||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
|
||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Version:** | ||
|
||
Please provide the version of {project_name} you are using. | ||
|
||
**Environment:** | ||
|
||
The output of `go env`. | ||
|
||
**Additional context** | ||
|
||
Add any other context about the problem here. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
|
||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
|
||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
|
||
Add any other context or screenshots about the feature request here. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#### What type of PR is this? | ||
<!-- | ||
Add one of the following kinds: | ||
build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) | ||
ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) | ||
docs: Documentation only changes | ||
feat: A new feature | ||
optimize: A new optimization | ||
fix: A bug fix | ||
perf: A code change that improves performance | ||
refactor: A code change that neither fixes a bug nor adds a feature | ||
style: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc) | ||
test: Adding missing tests or correcting existing tests | ||
chore: Changes to the build process or auxiliary tools and libraries such as documentation generation | ||
--> | ||
|
||
#### Check the PR title. | ||
<!-- | ||
The description of the title will be attached in Release Notes, | ||
so please describe it from user-oriented, what this PR does / why we need it. | ||
Please check your PR title with the below requirements: | ||
--> | ||
- [ ] This PR title match the format: \<type\>(optional scope): \<description\> | ||
- [ ] The description of this PR title is user-oriented and clear enough for others to understand. | ||
- [ ] Attach the PR updating the user documentation if the current PR requires user awareness at the usage level. [User docs repo](https://github.com/cloudwego/cloudwego.github.io) | ||
|
||
|
||
#### (Optional) Translate the PR title into Chinese. | ||
|
||
|
||
#### (Optional) More detailed description for this PR(en: English/zh: Chinese). | ||
<!-- | ||
Provide more detailed info for review(e.g., it's recommended to provide perf data if this is a perf type PR). | ||
--> | ||
en: | ||
zh(optional): | ||
|
||
|
||
#### (Optional) Which issue(s) this PR fixes: | ||
<!-- | ||
Automatically closes linked issue when PR is merged. | ||
Eg: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. | ||
--> | ||
|
||
#### (optional) The PR that updates user documentation: | ||
<!-- | ||
If the current PR requires user awareness at the usage level, please submit a PR to update user docs. [User docs repo](https://github.com/cloudwego/cloudwego.github.io) | ||
--> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Pull Request Check | ||
|
||
on: [ pull_request ] | ||
|
||
jobs: | ||
compliant: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Check License Header | ||
uses: apache/skywalking-eyes/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Check Spell | ||
uses: crate-ci/typos@master | ||
|
||
golangci-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
# for self-hosted, the cache path is shared across projects | ||
# and it works well without the cache of github actions | ||
# Enable it if we're going to use Github only | ||
cache: true | ||
|
||
- name: Golangci Lint | ||
# https://golangci-lint.run/ | ||
uses: golangci/golangci-lint-action@v6 | ||
with: | ||
version: latest |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Tests | ||
|
||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
unit-benchmark-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
|
||
- name: Unit Test | ||
run: go test -race -covermode=atomic -coverprofile=coverage.out ./... | ||
|
||
- name: Benchmark | ||
run: go test -bench=. -benchmem -run=none ./... | ||
|
||
compatibility-test: | ||
strategy: | ||
matrix: | ||
go: [ "1.19", "1.20", "1.21", "1.22" ] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
cache: true # don't use cache for self-hosted runners | ||
- name: Unit Test | ||
run: go test -race -covermode=atomic ./... |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
|
||
# Go workspace file | ||
go.work | ||
go.work.sum | ||
|
||
# env file | ||
.env | ||
|
||
# the result of the go build | ||
output* | ||
output/* | ||
|
||
# Files generated by IDEs | ||
.idea/ | ||
*.iml | ||
|
||
# Vim swap files | ||
*.swp | ||
|
||
# Vscode files | ||
.vscode | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Options for analysis running. | ||
run: | ||
# include `vendor` `third_party` `testdata` `examples` `Godeps` `builtin` | ||
skip-dirs-use-default: true | ||
# output configuration options | ||
output: | ||
# Format: colored-line-number|line-number|json|tab|checkstyle|code-climate|junit-xml|github-actions | ||
formats: colored-line-number | ||
# All available settings of specific linters. | ||
# Refer to https://golangci-lint.run/usage/linters | ||
linters-settings: | ||
gofumpt: | ||
# Choose whether to use the extra rules. | ||
# Default: false | ||
extra-rules: true | ||
govet: | ||
# Disable analyzers by name. | ||
# Run `go tool vet help` to see all analyzers. | ||
disable: | ||
- stdmethods | ||
linters: | ||
enable: | ||
- gofumpt | ||
- goimports | ||
- gofmt | ||
disable: | ||
- errcheck | ||
- typecheck | ||
- deadcode | ||
- varcheck | ||
- staticcheck | ||
issues: | ||
exclude-use-default: true | ||
exclude-files: | ||
- ".*\\.mock\\.go$" | ||
exclude-dirs: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
header: | ||
license: | ||
spdx-id: Apache-2.0 | ||
copyright-owner: CloudWeGo Authors | ||
|
||
paths: | ||
- '**/*.go' | ||
- '**/*.s' | ||
|
||
comment: on-failure |
Oops, something went wrong.