Files
plezy/scripts/ci_server_checks.sh
T
edde746 09656fa4d3 fix(supply-chain): verify CI and production inputs
Pin external actions, images, toolchains, native archives, and tvOS engine artifacts; enforce fail-closed CI checks and keep website privacy disclosures aligned with shipped behavior.
2026-07-24 03:56:40 +02:00

14 lines
330 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT_DIR/server"
go mod download
go mod verify
git diff --exit-code -- go.mod go.sum
go vet -mod=readonly ./...
go test -mod=readonly -race -count=1 ./...
go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
govulncheck ./...