about summary refs log tree commit diff stats
path: root/Makefile
Commit message (Collapse)AuthorAgeLines
* Benchmark large document and run in CI (#246)Markus Wüstenberg2025-03-05-2/+1
| | | Fixes #229
* Put .PHONY in front of each target in Makefile (#118)Markus Wüstenberg2022-11-15-2/+4
|
* Test using Go 1.17 (#91)Markus Wüstenberg2021-10-06-1/+1
| | | Also set the new `-shuffle` flag when testing.
* Bump Go version to 1.16 in CI (#72)Markus Wüstenberg2021-05-07-1/+1
|
* Remove fmt.Sprintf call in attribute Render (#38)Markus Wüstenberg2020-10-29-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Just concatenating the strings is much faster. Before: ``` make benchmark go test -bench=. goos: darwin goarch: amd64 pkg: github.com/maragudk/gomponents BenchmarkAttr/boolean_attributes-8 8194791 139 ns/op BenchmarkAttr/name-value_attributes-8 5143292 229 ns/op PASS ok github.com/maragudk/gomponents 2.841s ``` After: ``` make benchmark go test -bench=. goos: darwin goarch: amd64 pkg: github.com/maragudk/gomponents BenchmarkAttr/boolean_attributes-8 16755404 67.0 ns/op BenchmarkAttr/name-value_attributes-8 10208625 116 ns/op PASS ok github.com/maragudk/gomponents 2.702s ```
* Add Makefile (#4)Markus Wüstenberg2020-09-18-0/+11