Skip to content

refactor: make make lint happy #37

refactor: make make lint happy

refactor: make make lint happy #37

Workflow file for this run

name: "CI"
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: './go.mod'
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install Dependencies
run: go mod download
- name: Verify go.mod and go.sum
run: |
go mod tidy
git diff --exit-code || (echo "go.mod or go.sum is not clean! Run 'go mod tidy' and commit the changes." && exit 1)
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
sh -s -- -b $(go env GOPATH)/bin v1.54.2
- name: Install gofumpt
run: go install mvdan.cc/[email protected]
- name: Install goimports-reviser
run: go install github.com/incu6us/goimports-reviser/[email protected]
- name: Display Go version
run: go version
- name: Build
run: make build
- name: Check Formatting
run: |
make pretty
git diff --exit-code || (echo "Code is not formatted correctly! Run 'make pretty' and commit the changes." && exit 1)
- name: Run golangci-lint
run: golangci-lint run ./...
- name: Install go-junit-report
run: go install github.com/jstemmer/go-junit-report@latest
- name: Run Tests and Convert to JUnit
run: go test -v ./... | go-junit-report > report.xml
- name: Test Summary
uses: test-summary/[email protected]
with:
paths: "report.xml"
show: "fail"