Tests / Go and GTK tests (push) Failing after 1m57s
- Introduce a new section in README detailing the manual desktop smoke test process for the application. - Include commands for setting up and running the smoke test, along with expected outcomes and logging details. - Update the CI test script to include the new smoke test script in the shellcheck validation process.
22 lines
493 B
Bash
Executable File
22 lines
493 B
Bash
Executable File
#!/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 \
|
|
scripts/ci/publish-release.sh \
|
|
scripts/smoke/lib.sh \
|
|
scripts/smoke/desktop-smoke.sh
|