Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: Go Build and Test

on:
pull_request
on: pull_request

jobs:

build-and-test:
name: Build and Test the Go code
runs-on: ubuntu-latest
Expand All @@ -14,7 +12,11 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.5'
go-version: "1.22.5"
- name: Install gofumpt
run: go install mvdan.cc/gofumpt@latest
- name: Run gofumpt
run: gofumpt -l -w .
- name: make verification
run: make verifiers
- name: Build
Expand Down
6 changes: 0 additions & 6 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ linters:
- gomodguard
- gofmt
- unused
- gofumpt

linters-settings:
golint:
Expand All @@ -19,11 +18,6 @@ linters-settings:
misspell:
locale: US

gofumpt:
# Choose whether or not to use the extra rules that are disabled
# by default
extra-rules: false

issues:
exclude-use-default: false
exclude:
Expand Down