mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-07-28 23:08:49 +00:00
* Use libmagic to identify file types. * Fix mime array for database querying. * go mod tidy * Fix typo * Another fix for the scheduled image build workflow for tag case (#1137) * Try to fix the incorrect tag processing * more debug code * try with context=git * hopefully, final debug * the final commit with no debug code --------- Co-authored-by: Konstantin Koval * Add benchmark. * rollback workflows. * Fix AI comments. * Build image. * Fix AI comments. * Fix AI comments. * Rollback build workflow. --------- Co-authored-by: Kostiantyn <32730812+kkovaletp@users.noreply.github.com>
6 lines
91 B
Bash
Executable File
6 lines
91 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
cd "$(dirname $0)/../api"
|
|
go test ./... -bench . -benchmem
|