mirror of
https://github.com/sot-tech/mochi.git
synced 2026-06-08 06:01:55 -07:00
(untested) Merge commit 24ab4ae from https://github.com/jzelinskie/chihaya
This commit is contained in:
@@ -8,35 +8,6 @@ on:
|
||||
pull_request:
|
||||
branches: [ "*" ]
|
||||
jobs:
|
||||
go-mod-tidy:
|
||||
name: "Lint Go Modules"
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: "actions/checkout@v3"
|
||||
- uses: "actions/setup-go@v3"
|
||||
with:
|
||||
go-version: "^1.18"
|
||||
- name: "Run `go mod tidy`"
|
||||
run: "go mod tidy && bash -c '[ $(git status --porcelain | tee /dev/fd/2 | wc -c) -eq 0 ]'"
|
||||
|
||||
go-fmt:
|
||||
name: "Format Go"
|
||||
runs-on: "ubuntu-latest"
|
||||
steps:
|
||||
- uses: "actions/checkout@v3"
|
||||
- uses: "actions/setup-go@v3"
|
||||
with:
|
||||
go-version: "^1.18"
|
||||
- name: "Install gofumpt"
|
||||
run: "go install mvdan.cc/gofumpt@latest"
|
||||
- name: "Run `gofumpt`"
|
||||
run: |
|
||||
GOFUMPT_OUTPUT="$(find . -iname '*.go' -type f | xargs gofumpt -d)"
|
||||
if [ -n "$GOFUMPT_OUTPUT" ]; then
|
||||
echo "The following files are not correctly formatted:"
|
||||
echo "${GOFUMPT_OUTPUT}"
|
||||
exit 1
|
||||
fi
|
||||
go-lint:
|
||||
name: "Lint Go"
|
||||
runs-on: "ubuntu-latest"
|
||||
@@ -45,11 +16,10 @@ jobs:
|
||||
- uses: "actions/setup-go@v3"
|
||||
with:
|
||||
go-version: "^1.18"
|
||||
- uses: "golangci/golangci-lint-action@v3"
|
||||
with:
|
||||
version: "v1.45.2"
|
||||
skip-pkg-cache: true
|
||||
skip-build-cache: false
|
||||
- uses: "authzed/actions/gofumpt@main"
|
||||
- uses: "authzed/actions/go-mod-tidy@main"
|
||||
- uses: "authzed/actions/go-generate@main"
|
||||
- uses: "authzed/actions/golangci-lint@main"
|
||||
|
||||
codeql:
|
||||
name: "Analyze with CodeQL"
|
||||
@@ -64,8 +34,4 @@ jobs:
|
||||
language: [ "go" ]
|
||||
steps:
|
||||
- uses: "actions/checkout@v3"
|
||||
- uses: "github/codeql-action/init@v1"
|
||||
with:
|
||||
languages: "${{ matrix.language }}"
|
||||
- uses: "github/codeql-action/autobuild@v1"
|
||||
- uses: "github/codeql-action/analyze@v1"
|
||||
- uses: "authzed/actions/codeql@main"
|
||||
@@ -6,6 +6,9 @@ output:
|
||||
linters-settings:
|
||||
goimports:
|
||||
local-prefixes: "sot-te.ch/mochi"
|
||||
staticcheck:
|
||||
checks:
|
||||
- "all"
|
||||
gosec:
|
||||
excludes:
|
||||
- "G404" # Allow the usage of math/rand
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
// Package frontend defines interface which should satisfy
|
||||
// every network frontend
|
||||
package frontend
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// Package bytepool defines pool for storing and reusing raw bytes
|
||||
package bytepool
|
||||
|
||||
import "sync"
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
// Package container contains interface and register
|
||||
// used for torrent approval hash source
|
||||
package container
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// Package varinterval contains interval variation middleware
|
||||
package varinterval
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// Package storage contains prometheus specific globals, used by storages
|
||||
package storage
|
||||
|
||||
import "github.com/prometheus/client_golang/prometheus"
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
// Package storage contains interfaces and register of storage provider and
|
||||
// interface which should satisfy tracker storage
|
||||
package storage
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
// Package test contains storage benchmarks.
|
||||
// Not used in production.
|
||||
package test
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
// Package test contains storage tests.
|
||||
// Not used in production.
|
||||
package test
|
||||
|
||||
import (
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
// Package test contains generated data for storage tests.
|
||||
// Not used in production.
|
||||
package test
|
||||
|
||||
import (
|
||||
|
||||
Reference in New Issue
Block a user