Skip to content

Commit

Permalink
add make test
Browse files Browse the repository at this point in the history
  • Loading branch information
julianbrost committed Jun 20, 2024
1 parent ab79a87 commit 63382d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ all:
go build -o build/ ./cmd/icinga-notifications
go build -o build/channel/ ./cmd/channel/...

test:
go test ./...

install:
@# config
install -d $(DESTDIR)$(sysconfdir)/icinga-notifications
Expand All @@ -30,8 +33,7 @@ install:
@# chmod ensures consistent permissions when cp is called with umask != 022
chmod -R u=rwX,go=rX $(DESTDIR)$(datadir)/icinga-notifications/schema


clean:
rm -rf build

.PHONY: all install clean
.PHONY: all test install clean

0 comments on commit 63382d2

Please sign in to comment.