diff --git a/Justfile b/Justfile index c5c5a08..720c0f1 100644 --- a/Justfile +++ b/Justfile @@ -27,3 +27,9 @@ tool-gofumpt: @hash gofumpt> /dev/null 2>&1; if [ $? -ne 0 ]; then \ go install mvdan.cc/gofumpt@latest; \ fi + +test: + go test -race codeberg.org/codeberg/pages/server/... + +integration: + go test -race -tags integration codeberg.org/codeberg/pages/integration/...