feat(quando-91w): initialize project structure and tooling

- Initialize go.mod with module path code.beautifulmachines.dev/quando
- Set Go version to 1.22+ (using 1.25.6)
- Create directory structure (internal/calc/, .github/workflows/)
- Add comprehensive README.md with project overview, features, and examples
- Add MIT LICENSE
- Populate .gitignore for Go projects
- Create GitHub Actions CI workflow for testing, linting, and benchmarking

All acceptance criteria met:
✓ go.mod initialized with correct module path
✓ Go 1.22+ specified in go.mod
✓ Directory structure created
✓ README.md with project overview
✓ LICENSE file (MIT)
✓ .gitignore for Go projects
✓ Basic CI/CD workflow
This commit is contained in:
Oliver Jakoubek 2026-02-11 16:28:14 +01:00
commit f748b0e134
16 changed files with 2152 additions and 0 deletions

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module code.beautifulmachines.dev/quando
go 1.25.6