(untested) Merge commit 24ab4ae from https://github.com/jzelinskie/chihaya

This commit is contained in:
Lawrence, Rendall
2022-04-16 01:22:24 +03:00
parent 8cd8343757
commit 965df2a9c3
11 changed files with 23 additions and 39 deletions

View File

@@ -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"