2026-07-16 19:40:21 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -Eeuo pipefail
|
|
|
|
|
|
|
|
|
|
repo_root="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/../.." && pwd -P)"
|
|
|
|
|
cd -- "$repo_root"
|
|
|
|
|
|
|
|
|
|
go test ./...
|
|
|
|
|
go test -tags gtk ./...
|
|
|
|
|
go vet ./...
|
|
|
|
|
go vet -tags gtk ./...
|
|
|
|
|
|
|
|
|
|
shellcheck \
|
|
|
|
|
scripts/download-models.sh \
|
|
|
|
|
scripts/distrobox/common.sh \
|
|
|
|
|
scripts/distrobox/build.sh \
|
|
|
|
|
scripts/distrobox/run.sh \
|
|
|
|
|
scripts/ci/test.sh \
|
|
|
|
|
scripts/ci/package-release.sh \
|
2026-07-17 20:07:38 +03:00
|
|
|
scripts/ci/publish-release.sh \
|
|
|
|
|
scripts/smoke/lib.sh \
|
|
|
|
|
scripts/smoke/desktop-smoke.sh
|