Skip to content

feat: update readme #27

feat: update readme

feat: update readme #27

Workflow file for this run

name: lint
on:
workflow_call:
push:
branches:
- "main"
- "develop"
pull_request:
branches:
- "main"
- "develop"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23.x"
check-latest: true
- name: Install
run: go install mvdan.cc/gofumpt@latest
- name: Go Format
run: gofmt -s -w . && git diff --exit-code
- name: Gofumpt
run: gofumpt -l -w . && git diff --exit-code
- name: Go Vet
run: go vet ./...
- name: Go Tidy
run: go mod tidy && git diff --exit-code
- name: Go Mod
run: go mod download
- name: Go Mod Verify
run: go mod verify
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
check-latest: true
- name: Build
run: go build -v ./...
static-checks:
name: Static Checks
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23.1"
check-latest: true
- name: Install nilaway
run: go install go.uber.org/nilaway/cmd/nilaway@latest
- name: GolangCILint
uses: golangci/[email protected]
with:
version: latest
args: --timeout 5m