9 lines
164 B
Bash
9 lines
164 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
go mod download
|
|
go mod verify
|
|
golangci-lint run ./...
|
|
go test ./...
|
|
bash scripts/github-actions/test-deploy-native-binary.sh
|