Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
fix: sort makefile command for GA
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryburov committed Mar 3, 2023
1 parent facfcc6 commit b9ede22
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ deps: ## Download dependencies
lint: ## Check code (used golangci-lint)
GO111MODULE=on golangci-lint run

# include env vars
include .env.local
export

test: ## Run tests
go clean --testcache
go test ./...

# include env vars
include .env.local
export

run: ## Run application local
go run cmd/app/main.go

0 comments on commit b9ede22

Please sign in to comment.