Add signature tests to doc/tests and actions

This commit is contained in:
satk0
2024-12-13 22:42:29 +01:00
parent daac1a59b5
commit 0b89baf98b
2 changed files with 9 additions and 1 deletions

7
doc/tests/signatures.mk Normal file
View File

@@ -0,0 +1,7 @@
test-signatures:
$(GO) test -v ./lib/common/signature/ -run TestReadSignatureErrors
$(GO) test -v ./lib/common/signature/ -run TestReadSignature
$(GO) test -v ./lib/common/signature/ -run TestNewSignatureError
$(GO) test -v ./lib/common/signature/ -run TestNewSignature
.PHONY: test-signatures