Makefile: implement make db-tests

enables the option to run the DB tests locally
that are executed in the github actions
This commit is contained in:
Florian Schüller 2024-10-23 14:33:45 +02:00 committed by Florian Schüller
parent 1f8da3bd83
commit 00d3f07d08
8 changed files with 74 additions and 18 deletions

6
tools/dbtest-prepare-env.sh Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
pushd $(mktemp -d)
go mod init temp
go install github.com/jackc/tern@latest
popd