A codec library
Two main branches will be maintained: develop
and master
.
master
contains the latest version of the code that was tested end-to-end.
develop
contains the latest version of the code that runs all the tests (unit and integration tests).
Integration tests don't test all the integrations.
Hence, any version in develop
might have bugs when deployed for an end-to-end test.
To build the codebase, mill src.io.iohk.decco.test
To run a single test mill src.io.iohk.decco.test.testOne io.iohk.decco.test.instances.CollectionInstancesSpec
To publish the jar locally, mill src.io.iohk.decco.publishLocal
or mill src.io.iohk.decco.auto.publishLocal
In order to keep the code format consistent, we use scalafmt and git hooks, follow these steps to configure it accordingly (otherwise, your changes are going to be rejected by CircleCI):
- Install coursier, the
coursier
command must work. ./install-scalafmt.sh
(might require sudo).cp pre-commit .git/hooks/pre-commit