sync - build workin

This commit is contained in:
2025-09-22 18:45:54 -07:00
parent e04cd5160e
commit b98fed177d
110 changed files with 10189 additions and 8337 deletions

View File

@@ -5,24 +5,24 @@ set -e
echo "--- Running End-to-End CLI Tests ---"
echo "Testing garth --help"
go run go-garth/cmd/garth --help
go run github.com/sstent/go-garth-cli/cmd/garth --help
echo "Testing garth auth status"
go run go-garth/cmd/garth auth status
go run github.com/sstent/go-garth-cli/cmd/garth auth status
echo "Testing garth activities list"
go run go-garth/cmd/garth activities list --limit 5
go run github.com/sstent/go-garth-cli/cmd/garth activities list --limit 5
echo "Testing garth health sleep"
go run go-garth/cmd/garth health sleep --from 2024-01-01 --to 2024-01-02
go run github.com/sstent/go-garth-cli/cmd/garth health sleep --from 2024-01-01 --to 2024-01-02
echo "Testing garth stats distance"
go run go-garth/cmd/garth stats distance --year
go run github.com/sstent/go-garth-cli/cmd/garth stats distance --year
echo "Testing garth health vo2max"
go run go-garth/cmd/garth health vo2max --from 2024-01-01 --to 2024-01-02
go run github.com/sstent/go-garth-cli/cmd/garth health vo2max --from 2024-01-01 --to 2024-01-02
echo "Testing garth health hr-zones"
go run go-garth/cmd/garth health hr-zones
go run github.com/sstent/go-garth-cli/cmd/garth health hr-zones
echo "--- End-to-End CLI Tests Passed ---"