- Fixed GitHub Actions CI workflow by setting the working directory to ./NewProxy
- Added module caching to speed up dependency installation
- Replaced 'go mod download' with 'go mod tidy' for automatic dependency resolution
- Ensured all test and vet commands run inside the correct Go module directory
- Resolved 'no modules specified' error during CI runs
- Added .github/workflows/go-test.yml for automated CI testing using GitHub Actions
- Implemented unit tests for:
• utils/release.go (FetchLatestRelease)
• routes/builds.go (buildsHandler)
• routes/status.go (statusHandler)
- Ensured tests run with go test ./... -v -cover
- Included go vet and gofmt checks in the CI pipeline
- Improved project reliability and continuous integration setup