Files
next.orly.dev/scripts/test.sh
mleku 5edb7a3b09
Some checks failed
Go / build (push) Has been cancelled
implement auth and a simple admin-follows whitelist
2025-09-07 19:08:29 +01:00

21 lines
282 B
Bash
Executable File

#!/usr/bin/env bash
go mod tidy
go test ./...
cd pkg/crypto
go mod tidy
go test ./...
cd ../database
go mod tidy
go test ./...
cd ../encoders
go mod tidy
go test ./...
cd ../protocol
go mod tidy
go test ./...
cd ../utils
go mod tidy
go test ./...
cd ../acl
go mod tidy
go test ./...