Skip to content

Commit

Permalink
ci: update makefile to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tubenhirn committed Nov 3, 2023
1 parent 05ef897 commit 6804a38
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,19 @@
# ██║ ██║██║ ██║███████║██║╚██████╗
# ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═════╝

build: ## build rasic
test: ## test rasic
@echo "testing..."
go test ./...

build: test ## build rasic
@echo "building..."
go run .dagger/ci.go --task=release --snapshot=true

tag: ## tag rasic
@echo "taggin..."
go run .dagger/ci.go --task=tag

release: ## release rasic
release: test ## release rasic
@echo "release..."
go run .dagger/ci.go --task=release --snapshot=false

Expand Down

0 comments on commit 6804a38

Please sign in to comment.