Check code linting with clippy (I configured it to ignore some suggestions which I think make the code more clear even though it may be redundant)
Run a build (of library and tests)
Run unit tests
Run integration tests
Integration tests require some riscu programs that are built as part of a setup step. To separate them from normal unit tests they are marked as ignore and have the prefix integration_.
Since I added the clippy linter, I fixed the complainants so that the lint passes.
Add the following github actions:
cargo fmt
clippy
(I configured it to ignore some suggestions which I think make the code more clear even though it may be redundant)Integration tests require some riscu programs that are built as part of a setup step. To separate them from normal unit tests they are marked as
ignore
and have the prefixintegration_
.Since I added the clippy linter, I fixed the complainants so that the lint passes.
Resolve #28