Skip to content

Commit

Permalink
More gha fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjohnsontv committed Jan 4, 2024
1 parent 56fbba0 commit 9e59cbe
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,16 @@ build:
CGO_ENABLED=0 go build -o arcade cmd/arcade/arcade.go

test:
go generate ./...
go test ./...

setup:
go get -v -t -d ./...
if [ -f go.mod ]; then \
go mod tidy; \
go mod verify; \
fi; \
if [ -f Gopkg.toml ]; then \
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh; \
dep ensure; \
fi; \
go mod tidy; \
go mod verify; \

lint:
golangci-lint run --skip-files .*_test.go --enable wsl --enable misspell --timeout 180s

0 comments on commit 9e59cbe

Please sign in to comment.