In order to use the following go commands Docker must be running and Go must be installed on the machine (later, we'll provide commands for full docker-contained execution).
cd ci/core_unit_tests
go run main.go
Runs Core tests defined in core/tests
.
cd ci/format
go run main.go
Checks the format of the code for Core and its tests following the format rules in core/.clangformat
.
cd ci/format
go run main.go --apply-changes
Modifies the code so it complies with the format rules.