Welcome to the LGTM workshop repository!
Learn professional development practices by:
- Writing tests before implementation (TDD)
- Using CI/CD pipelines (GitHub Actions)
- Following open-source conventions (commits, PRs, issues)
- Git with SSH configured
- Go 1.24+ OR Node.js 24+ (choose your language)
- GitHub account
- Code editor
# Fork this repository first (click Fork button above)
# Clone your fork
git clone git@github.com:YOUR_USERNAME/lgtm-workshop.git
cd lgtm-workshop
# For Go
go mod download
go test ./...
# For JavaScript
npm install
npm test